]> git.eshelyaron.com Git - emacs.git/commitdiff
(substitute-key-definition): Clarify documentation.
authorGerd Moellmann <gerd@gnu.org>
Thu, 4 May 2000 20:21:58 +0000 (20:21 +0000)
committerGerd Moellmann <gerd@gnu.org>
Thu, 4 May 2000 20:21:58 +0000 (20:21 +0000)
lisp/ChangeLog
lisp/subr.el

index a3a033a891dbb863e9b358f52626fe47f5340f49..c07806050a8f7126ed81ea6b61ecc36654a0e220 100644 (file)
@@ -1,3 +1,14 @@
+2000-05-04  Gerd Moellmann  <gerd@gnu.org>
+
+       * subr.el (substitute-key-definition): Clarify documentation.
+
+2000-05-04  Milan Zamazal  <pdm@freesoft.cz>
+
+       * 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  <eliz@is.elta.co.il>
 
        * term/internal.el (cjk-codepages-alist): Add associations for
index 2256f33fac69c16e1c7e571c678175cf38fc77cc..9f8418f671e9e032babf3986a683dad2f0b7d78f 100644 (file)
@@ -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))