]> code.delx.au - gnu-emacs/blobdiff - lisp/subr.el
Fix Alt-modified keys on some European MS-Windows keyboards
[gnu-emacs] / lisp / subr.el
index cbcc27baad118324d5bac4045a0ed02c2d77c99e..0fb4a2ec2564c92ad433402e8aac91339391c628 100644 (file)
@@ -2088,7 +2088,7 @@ some sort of escape sequence, the ambiguity is resolved via `read-key-delay'."
       (cancel-timer timer)
       ;; For some reason, `read-key(-sequence)' leaves the prompt in the echo
       ;; area, whereas `read-event' seems to empty it just before returning
-      ;; (bug#22714).  So, let's mimick the behavior of `read-event'.
+      ;; (bug#22714).  So, let's mimic the behavior of `read-event'.
       (message nil)
       (use-global-map old-global-map))))
 
@@ -3945,7 +3945,8 @@ This function makes or adds to an entry on `after-load-alist'."
 (defmacro with-eval-after-load (file &rest body)
   "Execute BODY after FILE is loaded.
 FILE is normally a feature name, but it can also be a file name,
-in case that file does not provide any feature."
+in case that file does not provide any feature.  See `eval-after-load'
+for more details about the different forms of FILE and their semantics."
   (declare (indent 1) (debug t))
   `(eval-after-load ,file (lambda () ,@body)))