From: Gerd Moellmann Date: Thu, 4 May 2000 20:21:58 +0000 (+0000) Subject: (substitute-key-definition): Clarify documentation. X-Git-Tag: emacs-pretest-21.0.90~4048 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=4656b314909549c3a0c9cf8144790d0f29ff590a;p=emacs.git (substitute-key-definition): Clarify documentation. --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index a3a033a891d..c07806050a8 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,14 @@ +2000-05-04 Gerd Moellmann + + * subr.el (substitute-key-definition): Clarify documentation. + +2000-05-04 Milan Zamazal + + * glasses.el (glasses-convert-to-unreadable): Use + `glasses-separator' instead of the hard-wired "_". + (glasses-mode): Call `glasses-make-unreadable' only in a single + place. + 2000-05-04 Eli Zaretskii * term/internal.el (cjk-codepages-alist): Add associations for diff --git a/lisp/subr.el b/lisp/subr.el index 2256f33fac6..9f8418f671e 100644 --- a/lisp/subr.el +++ b/lisp/subr.el @@ -226,7 +226,7 @@ but optional second arg NODIGITS non-nil treats them like other chars." (defun substitute-key-definition (olddef newdef keymap &optional oldmap prefix) "Replace OLDDEF with NEWDEF for any keys in KEYMAP now defined as OLDDEF. In other words, OLDDEF is replaced with NEWDEF where ever it appears. -If optional fourth argument OLDMAP is specified, we redefine +Alternatively, if optional fourth argument OLDMAP is specified, we redefine in KEYMAP as NEWDEF those chars which are defined as OLDDEF in OLDMAP." (or prefix (setq prefix "")) (let* ((scan (or oldmap keymap))