diff --git a/lisp/abbrev.el b/lisp/abbrev.el index 54783db2c3..74c9a49b3b 100644 --- a/lisp/abbrev.el +++ b/lisp/abbrev.el @@ -288,6 +288,9 @@ add-mode-abbrev A negative argument means to undefine the specified abbrev. Reads the abbreviation in the minibuffer. +Instead of this, to read the expansion in the minibuffer +for the abbreviation at point, use `inverse-add-mode-abbrev'. + Don't use this function in a Lisp program; use `define-abbrev' instead." (interactive "p") (add-abbrev @@ -304,6 +307,9 @@ add-global-abbrev A negative argument means to undefine the specified abbrev. This command uses the minibuffer to read the abbreviation. +Instead of this, to read the expansion in the minibuffer +for the abbreviation at point, use `inverse-add-global-abbrev'. + Don't use this function in a Lisp program; use `define-abbrev' instead." (interactive "p") (add-abbrev global-abbrev-table "Global" arg)) @@ -330,7 +336,10 @@ inverse-add-mode-abbrev "Define last word before point as a mode-specific abbrev. With prefix argument N, defines the Nth word before point. This command uses the minibuffer to read the expansion. -Expands the abbreviation after defining it." +Expands the abbreviation after defining it. + +Instead of this, to read the abbreviation in the minibuffer +for the expansion at point, use `add-mode-abbrev'." (interactive "p") (inverse-add-abbrev (if only-global-abbrevs @@ -343,7 +352,10 @@ inverse-add-global-abbrev "Define last word before point as a global (mode-independent) abbrev. With prefix argument N, defines the Nth word before point. This command uses the minibuffer to read the expansion. -Expands the abbreviation after defining it." +Expands the abbreviation after defining it. + +Instead of this, to read the abbreviation in the minibuffer +for the expansion at point, use `add-global-abbrev'." (interactive "p") (inverse-add-abbrev global-abbrev-table "Global" n))