Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
c3536086
Commit
c3536086
authored
May 22, 2007
by
Juanma Barranquero
Browse files
(define-minor-mode, easy-mmode-define-navigation): Fix typos in docstrings.
parent
f7fa4950
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
lisp/emacs-lisp/easy-mmode.el
lisp/emacs-lisp/easy-mmode.el
+2
-2
No files found.
lisp/emacs-lisp/easy-mmode.el
View file @
c3536086
...
...
@@ -103,7 +103,7 @@ used (see below).
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 @@ BASE-next also tries to make sure that the whole entry is visible by
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"
)))
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment