diff options
| author | Juanma Barranquero | 2007-05-22 09:49:49 +0000 |
|---|---|---|
| committer | Juanma Barranquero | 2007-05-22 09:49:49 +0000 |
| commit | c3536086f58d4ae6cadbdeca5ef22722a9b82cc3 (patch) | |
| tree | 9c9f4390a80db1ef300c190a16be156818385e9b | |
| parent | f7fa4950194235d94d3d90c62298839e641eac5b (diff) | |
| download | emacs-c3536086f58d4ae6cadbdeca5ef22722a9b82cc3.tar.gz emacs-c3536086f58d4ae6cadbdeca5ef22722a9b82cc3.zip | |
(define-minor-mode, easy-mmode-define-navigation): Fix typos in docstrings.
| -rw-r--r-- | lisp/emacs-lisp/easy-mmode.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/emacs-lisp/easy-mmode.el b/lisp/emacs-lisp/easy-mmode.el index 19ed39a2b42..79ecf52dfbc 100644 --- a/lisp/emacs-lisp/easy-mmode.el +++ b/lisp/emacs-lisp/easy-mmode.el | |||
| @@ -103,7 +103,7 @@ used (see below). | |||
| 103 | 103 | ||
| 104 | BODY contains code to execute each time the mode is activated or deactivated. | 104 | BODY contains code to execute each time the mode is activated or deactivated. |
| 105 | It is executed after toggling the mode, | 105 | It is executed after toggling the mode, |
| 106 | and before running the hook variable `mode-HOOK'. | 106 | and before running the hook variable `MODE-hook'. |
| 107 | Before the actual body code, you can write keyword arguments (alternating | 107 | Before the actual body code, you can write keyword arguments (alternating |
| 108 | keywords and values). These following keyword arguments are supported (other | 108 | keywords and values). These following keyword arguments are supported (other |
| 109 | keywords will be passed to `defcustom' if the minor mode is global): | 109 | keywords will be passed to `defcustom' if the minor mode is global): |
| @@ -486,7 +486,7 @@ BASE-next also tries to make sure that the whole entry is visible by | |||
| 486 | the next entry) and recentering if necessary. | 486 | the next entry) and recentering if necessary. |
| 487 | ENDFUN should return the end position (with or without moving point). | 487 | ENDFUN should return the end position (with or without moving point). |
| 488 | NARROWFUN non-nil means to check for narrowing before moving, and if | 488 | NARROWFUN non-nil means to check for narrowing before moving, and if |
| 489 | found, do widen first and then call NARROWFUN with no args after moving." | 489 | found, do `widen' first and then call NARROWFUN with no args after moving." |
| 490 | (let* ((base-name (symbol-name base)) | 490 | (let* ((base-name (symbol-name base)) |
| 491 | (prev-sym (intern (concat base-name "-prev"))) | 491 | (prev-sym (intern (concat base-name "-prev"))) |
| 492 | (next-sym (intern (concat base-name "-next"))) | 492 | (next-sym (intern (concat base-name "-next"))) |