Fix use of mark-active in examples.
This commit is contained in:
parent
7e16e19905
commit
a051972bef
1 changed files with 2 additions and 2 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue