changeset 77885:b210f1cabdb4

(define-minor-mode, easy-mmode-define-navigation): Fix typos in docstrings.
author Juanma Barranquero <lekktu@gmail.com>
date Mon, 04 Jun 2007 22:51:47 +0000
parents 6e26057dc7da
children c90e5f7ef586
files lisp/emacs-lisp/easy-mmode.el
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/emacs-lisp/easy-mmode.el	Mon Jun 04 22:50:02 2007 +0000
+++ b/lisp/emacs-lisp/easy-mmode.el	Mon Jun 04 22:51:47 2007 +0000
@@ -103,7 +103,7 @@
 
 BODY contains code to execute each time the mode is activated or deactivated.
   It is executed after toggling the mode,
-  and before running the hook variable `mode-HOOK'.
+  and before running the hook variable `MODE-hook'.
   Before the actual body code, you can write keyword arguments (alternating
   keywords and values).  These following keyword arguments are supported (other
   keywords will be passed to `defcustom' if the minor mode is global):
@@ -486,7 +486,7 @@
   the next entry) and recentering if necessary.
 ENDFUN should return the end position (with or without moving point).
 NARROWFUN non-nil means to check for narrowing before moving, and if
-found, do widen first and then call NARROWFUN with no args after moving."
+found, do `widen' first and then call NARROWFUN with no args after moving."
   (let* ((base-name (symbol-name base))
 	 (prev-sym (intern (concat base-name "-prev")))
 	 (next-sym (intern (concat base-name "-next")))