aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/abbrev.el11
1 files changed, 7 insertions, 4 deletions
diff --git a/lisp/abbrev.el b/lisp/abbrev.el
index 734cefbb7be..f0fc59f31e8 100644
--- a/lisp/abbrev.el
+++ b/lisp/abbrev.el
@@ -150,11 +150,12 @@ Otherwise display all abbrevs."
150(defun edit-abbrevs () 150(defun edit-abbrevs ()
151 "Alter abbrev definitions by editing a list of them. 151 "Alter abbrev definitions by editing a list of them.
152Selects a buffer containing a list of abbrev definitions with 152Selects a buffer containing a list of abbrev definitions with
153point located in the abbrev table of current buffer. 153point located in the abbrev table for the current buffer, and
154turns on `edit-abbrevs-mode' in that buffer.
154You can edit them and type \\<edit-abbrevs-map>\\[edit-abbrevs-redefine] to redefine abbrevs 155You can edit them and type \\<edit-abbrevs-map>\\[edit-abbrevs-redefine] to redefine abbrevs
155according to your editing. 156according to your editing.
156Buffer contains a header line for each abbrev table, 157The abbrevs editing buffer contains a header line for each
157 which is the abbrev table name in parentheses. 158abbrev table, which is the abbrev table name in parentheses.
158This is followed by one line per abbrev in that table: 159This is followed by one line per abbrev in that table:
159NAME USECOUNT EXPANSION HOOK 160NAME USECOUNT EXPANSION HOOK
160where NAME and EXPANSION are strings with quotes, 161where NAME and EXPANSION are strings with quotes,
@@ -1022,7 +1023,9 @@ SORTFUN is passed to `sort' to change the default ordering."
1022;; Keep it after define-abbrev-table, since define-derived-mode uses 1023;; Keep it after define-abbrev-table, since define-derived-mode uses
1023;; define-abbrev-table. 1024;; define-abbrev-table.
1024(define-derived-mode edit-abbrevs-mode fundamental-mode "Edit-Abbrevs" 1025(define-derived-mode edit-abbrevs-mode fundamental-mode "Edit-Abbrevs"
1025 "Major mode for editing the list of abbrev definitions.") 1026 "Major mode for editing the list of abbrev definitions.
1027This mode is for editing abbrevs in a buffer prepared by `edit-abbrevs',
1028which see.")
1026 1029
1027(provide 'abbrev) 1030(provide 'abbrev)
1028 1031