summaryrefslogtreecommitdiff
path: root/lispref
diff options
context:
space:
mode:
authorDave Love <fx@gnu.org>2000-01-28 22:58:46 +0000
committerDave Love <fx@gnu.org>2000-01-28 22:58:46 +0000
commita051972bef7c0686577f8679f1da6a9d582203c9 (patch)
tree76817eb94f2dc28ba2c1cb5ef328b4d793ede76e /lispref
parent7e16e199058bde427aa7c2839a596343a174e40c (diff)
downloademacs-a051972bef7c0686577f8679f1da6a9d582203c9.tar.gz
Fix use of mark-active in examples.
Diffstat (limited to 'lispref')
-rw-r--r--lispref/keymaps.texi4
1 files changed, 2 insertions, 2 deletions
diff --git a/lispref/keymaps.texi b/lispref/keymaps.texi
index a7b96a8a3e8..0826db07df8 100644
--- a/lispref/keymaps.texi
+++ b/lispref/keymaps.texi
@@ -1980,7 +1980,7 @@ Items}) for @code{print-region}, like this:
@example
(define-key menu-bar-print-menu [print-region]
'(menu-item "Print Region" print-region
- :enable (mark-active)))
+ :enable mark-active))
@end example
@noindent
@@ -1992,7 +1992,7 @@ we could do it this way:
@example
(define-key menu-bar-print-menu [print-region]
'(menu-item "Print Region" print-region
- :visible (mark-active)))
+ :visible mark-active))
@end example
@node Menu Bar