diff options
| author | Dave Love | 2000-03-12 15:34:37 +0000 |
|---|---|---|
| committer | Dave Love | 2000-03-12 15:34:37 +0000 |
| commit | 0d6e23cfa7121bec41cafcedafe51ea7835af233 (patch) | |
| tree | a908ba94459df1b4cd75dc1735486e3cdb4d0a18 | |
| parent | 141d2f67cdecd47f7c570c63e5e0badf6449e940 (diff) | |
| download | emacs-0d6e23cfa7121bec41cafcedafe51ea7835af233.tar.gz emacs-0d6e23cfa7121bec41cafcedafe51ea7835af233.zip | |
(completion-setup-function): Use display-color-p.
| -rw-r--r-- | lisp/ChangeLog | 36 | ||||
| -rw-r--r-- | lisp/simple.el | 2 |
2 files changed, 33 insertions, 5 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 62c1c78e2a5..8a8c73aed8b 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,29 @@ | |||
| 1 | 2000-03-12 Dave Love <fx@gnu.org> | ||
| 2 | |||
| 3 | * facemenu.el (facemenu-get-face): Use display-color-p. | ||
| 4 | * enriched.el (enriched-decode-foreground): Likewise. | ||
| 5 | (enriched-decode-background): Likewise. | ||
| 6 | * isearch.el (isearch-highlight): Likewise. | ||
| 7 | * info-look.el (info-lookup): Likewise. | ||
| 8 | * simple.el (completion-setup-function): Likewise. | ||
| 9 | |||
| 10 | * textmodes/text-mode.el (text-mode-hook): Add flyspell-mode to | ||
| 11 | :options. | ||
| 12 | |||
| 13 | * bindings.el (mode-line-format): Fix line-number and | ||
| 14 | column-number items. Add help-echo for the background. | ||
| 15 | (mode-line-mule-info): Modify help-echo. | ||
| 16 | |||
| 17 | * avoid.el (mouse-avoidance-mode): Add autoload cookie to | ||
| 18 | defcustom. | ||
| 19 | |||
| 20 | * files.el (load-file): Allow completion to .elc. | ||
| 21 | |||
| 22 | * man.el: Doc fixes. | ||
| 23 | (Man-init-defvars): Use display-color-p to set fontification. | ||
| 24 | |||
| 25 | * play/hanoi.el (hanoi-internal): Don't use oddp. | ||
| 26 | |||
| 1 | 2000-03-12 Gerd Moellmann <gerd@gnu.org> | 27 | 2000-03-12 Gerd Moellmann <gerd@gnu.org> |
| 2 | 28 | ||
| 3 | * arc-mode.el (archive-zip-update): Add `-P' for pkzip. | 29 | * arc-mode.el (archive-zip-update): Add `-P' for pkzip. |
| @@ -36,10 +62,12 @@ | |||
| 36 | 62 | ||
| 37 | 2000-03-09 Stefan Monnier <monnier@cs.yale.edu> | 63 | 2000-03-09 Stefan Monnier <monnier@cs.yale.edu> |
| 38 | 64 | ||
| 39 | * emacs-lisp/easy-mmode.el (easy-mmode-define-keymap): Extend to allow | 65 | * emacs-lisp/easy-mmode.el (easy-mmode-define-keymap): Extend to |
| 40 | more flexibility. | 66 | allow more flexibility. |
| 41 | (easy-mmode-set-keymap-parents, easy-mmode-define-syntax): New funs. | 67 | (easy-mmode-set-keymap-parents, easy-mmode-define-syntax): New |
| 42 | (easy-mmode-def(map|syntax|ine-derived-mode)): New macros. | 68 | fns. |
| 69 | (easy-mmode-defmap, easy-mmode-defsyntax) | ||
| 70 | (easy-mmode-define-derived-mode): New macros. | ||
| 43 | 71 | ||
| 44 | 2000-03-09 Didier Verna <didier@xemacs.org> | 72 | 2000-03-09 Didier Verna <didier@xemacs.org> |
| 45 | 73 | ||
diff --git a/lisp/simple.el b/lisp/simple.el index a7d8b480952..17bc9e70e36 100644 --- a/lisp/simple.el +++ b/lisp/simple.el | |||
| @@ -3924,7 +3924,7 @@ The completion list buffer is available as the value of `standard-output'.") | |||
| 3924 | (buffer-name mainbuf)) | 3924 | (buffer-name mainbuf)) |
| 3925 | (setq completion-base-size 0)))) | 3925 | (setq completion-base-size 0)))) |
| 3926 | (goto-char (point-min)) | 3926 | (goto-char (point-min)) |
| 3927 | (if window-system | 3927 | (if (display-mouse-p) |
| 3928 | (insert (substitute-command-keys | 3928 | (insert (substitute-command-keys |
| 3929 | "Click \\[mouse-choose-completion] on a completion to select it.\n"))) | 3929 | "Click \\[mouse-choose-completion] on a completion to select it.\n"))) |
| 3930 | (insert (substitute-command-keys | 3930 | (insert (substitute-command-keys |