diff options
| author | Glenn Morris | 2009-09-17 06:28:32 +0000 |
|---|---|---|
| committer | Glenn Morris | 2009-09-17 06:28:32 +0000 |
| commit | a8106aecf0be7a29024eb8c507f1f9968bb8bafa (patch) | |
| tree | 06d257296a1577efd4b38cddb066623432e4423b | |
| parent | e4a09a11d688090915b6c16f70163c56b108d7e2 (diff) | |
| download | emacs-a8106aecf0be7a29024eb8c507f1f9968bb8bafa.tar.gz emacs-a8106aecf0be7a29024eb8c507f1f9968bb8bafa.zip | |
(lisp-mode-syntax-table): Give it a doc-string.
| -rw-r--r-- | lisp/ChangeLog | 3 | ||||
| -rw-r--r-- | lisp/emacs-lisp/lisp-mode.el | 3 |
2 files changed, 4 insertions, 2 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 547774587f8..9f958013f74 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -4,7 +4,8 @@ | |||
| 4 | 4 | ||
| 5 | * simple.el (hard-newline): Give it a doc-string. | 5 | * simple.el (hard-newline): Give it a doc-string. |
| 6 | 6 | ||
| 7 | * emacs-lisp/lisp-mode.el (emacs-lisp-mode-syntax-table): Give it a doc. | 7 | * emacs-lisp/lisp-mode.el (emacs-lisp-mode-syntax-table): |
| 8 | (lisp-mode-syntax-table): Give them doc-strings. | ||
| 8 | 9 | ||
| 9 | 2009-09-17 Dan Nicolaescu <dann@ics.uci.edu> | 10 | 2009-09-17 Dan Nicolaescu <dann@ics.uci.edu> |
| 10 | 11 | ||
diff --git a/lisp/emacs-lisp/lisp-mode.el b/lisp/emacs-lisp/lisp-mode.el index 030232e7b9b..10a2b3aa41e 100644 --- a/lisp/emacs-lisp/lisp-mode.el +++ b/lisp/emacs-lisp/lisp-mode.el | |||
| @@ -87,7 +87,8 @@ | |||
| 87 | (modify-syntax-entry ?\] "_ " table) | 87 | (modify-syntax-entry ?\] "_ " table) |
| 88 | (modify-syntax-entry ?# "' 14b" table) | 88 | (modify-syntax-entry ?# "' 14b" table) |
| 89 | (modify-syntax-entry ?| "\" 23bn" table) | 89 | (modify-syntax-entry ?| "\" 23bn" table) |
| 90 | table)) | 90 | table) |
| 91 | "Syntax table used in `lisp-mode'.") | ||
| 91 | 92 | ||
| 92 | (defvar lisp-imenu-generic-expression | 93 | (defvar lisp-imenu-generic-expression |
| 93 | (list | 94 | (list |