diff options
| author | Xue Fuqiao | 2015-10-04 14:42:45 +0800 |
|---|---|---|
| committer | Xue Fuqiao | 2015-10-04 14:42:45 +0800 |
| commit | fd51234cd3b526edb86e905c96f8cd9f15d9a2d9 (patch) | |
| tree | 433c64096fe30045afc44871b8260d340ea05d3f | |
| parent | ddb8f90322e2dd3e3dc598d29241442a9e8bcf2d (diff) | |
| download | emacs-fd51234cd3b526edb86e905c96f8cd9f15d9a2d9.tar.gz emacs-fd51234cd3b526edb86e905c96f8cd9f15d9a2d9.zip | |
; Add some comments
| -rw-r--r-- | doc/emacs/frames.texi | 1 | ||||
| -rw-r--r-- | doc/lispintro/emacs-lisp-intro.texi | 3 |
2 files changed, 4 insertions, 0 deletions
diff --git a/doc/emacs/frames.texi b/doc/emacs/frames.texi index a171db7bb03..95b721fa739 100644 --- a/doc/emacs/frames.texi +++ b/doc/emacs/frames.texi | |||
| @@ -329,6 +329,7 @@ instead of running the @code{mouse-save-then-kill} command, rebind | |||
| 329 | @kbd{Mouse-3} by adding the following line to your init file | 329 | @kbd{Mouse-3} by adding the following line to your init file |
| 330 | (@pxref{Init Rebinding}): | 330 | (@pxref{Init Rebinding}): |
| 331 | 331 | ||
| 332 | @c FIXME: `mouse-popup-menubar-stuff' is obsolete since 23.1. | ||
| 332 | @smallexample | 333 | @smallexample |
| 333 | (global-set-key [mouse-3] 'mouse-popup-menubar-stuff) | 334 | (global-set-key [mouse-3] 'mouse-popup-menubar-stuff) |
| 334 | @end smallexample | 335 | @end smallexample |
diff --git a/doc/lispintro/emacs-lisp-intro.texi b/doc/lispintro/emacs-lisp-intro.texi index 22e50e94f48..245113b86d7 100644 --- a/doc/lispintro/emacs-lisp-intro.texi +++ b/doc/lispintro/emacs-lisp-intro.texi | |||
| @@ -3454,6 +3454,9 @@ a function. (@xref{Interactive Codes, , Code Characters for | |||
| 3454 | Consider the function @code{zap-to-char}. Its interactive expression | 3454 | Consider the function @code{zap-to-char}. Its interactive expression |
| 3455 | is | 3455 | is |
| 3456 | 3456 | ||
| 3457 | @c FIXME: the interactive expression of zap-to-char has been changed | ||
| 3458 | @c (in 2012-04-10). | ||
| 3459 | |||
| 3457 | @smallexample | 3460 | @smallexample |
| 3458 | (interactive "p\ncZap to char: ") | 3461 | (interactive "p\ncZap to char: ") |
| 3459 | @end smallexample | 3462 | @end smallexample |