Mercurial > hg > xemacs-beta
annotate tests/tooltalk/Makefile @ 5872:f9e59cd39a9a
Clean up #'read-quoted-char, support help-event-list there.
lisp/changeLog addition:
2015-03-14 Aidan Kehoe <kehoea@parhasard.net>
* simple.el (quoted-insert):
Update the docstring here, syncing GNU's, especially mentioning
read-quoted-char-radix.
* cmdloop.el:
* cmdloop.el (read-quoted-char-radix): Move this up here, outside
the functions.
* cmdloop.el (read-function-key-map): New label, reading and
replacing characters from function-key-map if appropriate.
* cmdloop.el (read-quoted-char): Multiple changes:
-- Take advantage of help-event-list, but be careful not to have
any keystrokes with character equivalents in it, so the user can
type C-q C-h and have the expected result.
-- Use function-key-map, as does #'read-char and
#'read-exclusive-char, helpful for character composition under
X11.
-- Pop up the help window ourselves if, e.g. F1 arrives on a TTY
via function-key-map, event-stream won't have done it.
-- Error if no keystroke that can be converted into a character is
specified, don't just insert ?\x00 as we used to and as does GNU
-- Use #'digit-char-p instead of reimplementing it.
-- Fix a bug of mine where I wasn't consistent about treating
character codes as Unicode.
| author | Aidan Kehoe <kehoea@parhasard.net> |
|---|---|
| date | Tue, 17 Mar 2015 12:22:50 +0000 |
| parents | 4aa8ee813265 |
| children |
| rev | line source |
|---|---|
| 70 | 1 ### Makefile - Makefile for ToolTalk testing executables |
| 2 | |
| 3 # Author: Vladimir Ivanovic <vladimir@Eng.Sun.COM> | |
| 4 # Maintainer: Vladimir Ivanovic <vladimir@Eng.Sun.COM> | |
| 5 # Created: 08 March 1995 | |
| 6 # Keywords: ToolTalk, testing | |
| 7 | |
| 8 # Copyright (C) 1995 Sun Microsystems, Inc | |
| 9 | |
|
5408
9fc91aa3a927
Converted tooltalk to GPLv3 according to GPLv3 source survey analysis.
Mats Lidell <matsl@xemacs.org>
parents:
70
diff
changeset
|
10 # This file is part of XEmacs. |
|
9fc91aa3a927
Converted tooltalk to GPLv3 according to GPLv3 source survey analysis.
Mats Lidell <matsl@xemacs.org>
parents:
70
diff
changeset
|
11 |
|
9fc91aa3a927
Converted tooltalk to GPLv3 according to GPLv3 source survey analysis.
Mats Lidell <matsl@xemacs.org>
parents:
70
diff
changeset
|
12 # XEmacs is free software: you can redistribute it and/or modify it |
|
9fc91aa3a927
Converted tooltalk to GPLv3 according to GPLv3 source survey analysis.
Mats Lidell <matsl@xemacs.org>
parents:
70
diff
changeset
|
13 # under the terms of the GNU General Public License as published by the |
|
9fc91aa3a927
Converted tooltalk to GPLv3 according to GPLv3 source survey analysis.
Mats Lidell <matsl@xemacs.org>
parents:
70
diff
changeset
|
14 # Free Software Foundation, either version 3 of the License, or (at your |
|
9fc91aa3a927
Converted tooltalk to GPLv3 according to GPLv3 source survey analysis.
Mats Lidell <matsl@xemacs.org>
parents:
70
diff
changeset
|
15 # option) any later version. |
|
9fc91aa3a927
Converted tooltalk to GPLv3 according to GPLv3 source survey analysis.
Mats Lidell <matsl@xemacs.org>
parents:
70
diff
changeset
|
16 |
|
9fc91aa3a927
Converted tooltalk to GPLv3 according to GPLv3 source survey analysis.
Mats Lidell <matsl@xemacs.org>
parents:
70
diff
changeset
|
17 # XEmacs is distributed in the hope that it will be useful, but WITHOUT |
|
9fc91aa3a927
Converted tooltalk to GPLv3 according to GPLv3 source survey analysis.
Mats Lidell <matsl@xemacs.org>
parents:
70
diff
changeset
|
18 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
|
9fc91aa3a927
Converted tooltalk to GPLv3 according to GPLv3 source survey analysis.
Mats Lidell <matsl@xemacs.org>
parents:
70
diff
changeset
|
19 # FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
|
9fc91aa3a927
Converted tooltalk to GPLv3 according to GPLv3 source survey analysis.
Mats Lidell <matsl@xemacs.org>
parents:
70
diff
changeset
|
20 # for more details. |
|
9fc91aa3a927
Converted tooltalk to GPLv3 according to GPLv3 source survey analysis.
Mats Lidell <matsl@xemacs.org>
parents:
70
diff
changeset
|
21 |
|
9fc91aa3a927
Converted tooltalk to GPLv3 according to GPLv3 source survey analysis.
Mats Lidell <matsl@xemacs.org>
parents:
70
diff
changeset
|
22 # You should have received a copy of the GNU General Public License |
|
9fc91aa3a927
Converted tooltalk to GPLv3 according to GPLv3 source survey analysis.
Mats Lidell <matsl@xemacs.org>
parents:
70
diff
changeset
|
23 # along with XEmacs. If not, see <http://www.gnu.org/licenses/> |
|
9fc91aa3a927
Converted tooltalk to GPLv3 according to GPLv3 source survey analysis.
Mats Lidell <matsl@xemacs.org>
parents:
70
diff
changeset
|
24 |
| 70 | 25 ### Commentary: |
| 26 # This is SPARCworks & Solaris 2.x-centric. | |
| 27 | |
| 28 ### Code: | |
| 29 | |
|
5512
4aa8ee813265
Add a DESTDIR variable to all Makefiles, defaulting to the empty string, and
Jerry James <james@xemacs.org>
parents:
5408
diff
changeset
|
30 DESTDIR= |
|
4aa8ee813265
Add a DESTDIR variable to all Makefiles, defaulting to the empty string, and
Jerry James <james@xemacs.org>
parents:
5408
diff
changeset
|
31 |
| 70 | 32 CC = cc -Xc |
| 33 CPPFLAGS = -I/usr/openwin/include | |
| 34 CFLAGS = -g -v -DNeedFunctionPrototypes | |
| 35 LDFLAGS = -L/usr/openwin/lib -R/usr/openwin/lib -ltt | |
| 36 | |
| 37 all: emacs-eval load-file make-client-frame | |
| 38 | |
| 39 clean: | |
| 40 rm -f *.o emacs-eval load-file make-client-frame | |
| 41 | |
| 42 ### Makefile ends here. |
