diff options
author | Stefan Kangas <stefan@marxist.se> | 2022-01-10 00:59:59 +0100 |
---|---|---|
committer | Stefan Kangas <stefan@marxist.se> | 2022-01-10 01:00:58 +0100 |
commit | 8dba3a06261ebb21cb83145505a0c6e35a123c12 (patch) | |
tree | 6a0bd1bde64f0b2d2b72bc58886c62d5f4ac41b9 /lisp/abbrev.el | |
parent | 362ceb75a9ab9798cce8e3fdaddfd6745d2d97b4 (diff) | |
download | emacs-8dba3a06261ebb21cb83145505a0c6e35a123c12.tar.gz emacs-8dba3a06261ebb21cb83145505a0c6e35a123c12.tar.bz2 emacs-8dba3a06261ebb21cb83145505a0c6e35a123c12.zip |
Improve docstring of edit-abbrevs
* lisp/abbrev.el (edit-abbrevs): Doc fix; don't use obsolete name.
Improve docstring formatting.
Diffstat (limited to 'lisp/abbrev.el')
-rw-r--r-- | lisp/abbrev.el | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/lisp/abbrev.el b/lisp/abbrev.el index 171240b6403..de971eb2bd5 100644 --- a/lisp/abbrev.el +++ b/lisp/abbrev.el @@ -149,12 +149,18 @@ Otherwise display all abbrevs." Selects a buffer containing a list of abbrev definitions with point located in the abbrev table for the current buffer, and turns on `edit-abbrevs-mode' in that buffer. -You can edit them and type \\<edit-abbrevs-map>\\[edit-abbrevs-redefine] to redefine abbrevs + +You can edit them and type \\<edit-abbrevs-mode-map>\\[edit-abbrevs-redefine] \ +to redefine abbrevs according to your editing. + The abbrevs editing buffer contains a header line for each abbrev table, which is the abbrev table name in parentheses. + This is followed by one line per abbrev in that table: -NAME USECOUNT EXPANSION HOOK + + NAME USECOUNT EXPANSION HOOK + where NAME and EXPANSION are strings with quotes, USECOUNT is an integer, and HOOK is any valid function or may be omitted (it is usually omitted)." |