Mercurial > emacs
comparison lisp/emacs-lisp/lisp-mode.el @ 100889:fa6fe6da548a
* emacs-lisp/lisp-mode.el (emacs-lisp-mode, lisp-mode, lisp-interaction-mode):
Add a blank line in the docstring before the keymap listing.
author | Juanma Barranquero <lekktu@gmail.com> |
---|---|
date | Sun, 04 Jan 2009 19:32:40 +0000 |
parents | 3564a29838cf |
children | a9dc0e7c3f2b |
comparison
equal
deleted
inserted
replaced
100888:02615af9ba70 | 100889:fa6fe6da548a |
---|---|
414 (defun emacs-lisp-mode () | 414 (defun emacs-lisp-mode () |
415 "Major mode for editing Lisp code to run in Emacs. | 415 "Major mode for editing Lisp code to run in Emacs. |
416 Commands: | 416 Commands: |
417 Delete converts tabs to spaces as it moves back. | 417 Delete converts tabs to spaces as it moves back. |
418 Blank lines separate paragraphs. Semicolons start comments. | 418 Blank lines separate paragraphs. Semicolons start comments. |
419 | |
419 \\{emacs-lisp-mode-map} | 420 \\{emacs-lisp-mode-map} |
420 Entry to this mode calls the value of `emacs-lisp-mode-hook' | 421 Entry to this mode calls the value of `emacs-lisp-mode-hook' |
421 if that value is non-nil." | 422 if that value is non-nil." |
422 (interactive) | 423 (interactive) |
423 (kill-all-local-variables) | 424 (kill-all-local-variables) |
453 (defun lisp-mode () | 454 (defun lisp-mode () |
454 "Major mode for editing Lisp code for Lisps other than GNU Emacs Lisp. | 455 "Major mode for editing Lisp code for Lisps other than GNU Emacs Lisp. |
455 Commands: | 456 Commands: |
456 Delete converts tabs to spaces as it moves back. | 457 Delete converts tabs to spaces as it moves back. |
457 Blank lines separate paragraphs. Semicolons start comments. | 458 Blank lines separate paragraphs. Semicolons start comments. |
459 | |
458 \\{lisp-mode-map} | 460 \\{lisp-mode-map} |
459 Note that `run-lisp' may be used either to start an inferior Lisp job | 461 Note that `run-lisp' may be used either to start an inferior Lisp job |
460 or to switch back to an existing one. | 462 or to switch back to an existing one. |
461 | 463 |
462 Entry to this mode calls the value of `lisp-mode-hook' | 464 Entry to this mode calls the value of `lisp-mode-hook' |
530 | 532 |
531 Commands: | 533 Commands: |
532 Delete converts tabs to spaces as it moves back. | 534 Delete converts tabs to spaces as it moves back. |
533 Paragraphs are separated only by blank lines. | 535 Paragraphs are separated only by blank lines. |
534 Semicolons start comments. | 536 Semicolons start comments. |
537 | |
535 \\{lisp-interaction-mode-map} | 538 \\{lisp-interaction-mode-map} |
536 Entry to this mode calls the value of `lisp-interaction-mode-hook' | 539 Entry to this mode calls the value of `lisp-interaction-mode-hook' |
537 if that value is non-nil.") | 540 if that value is non-nil.") |
538 | 541 |
539 (defun eval-print-last-sexp () | 542 (defun eval-print-last-sexp () |