diff options
author | Dave Love <fx@gnu.org> | 2000-06-20 09:37:48 +0000 |
---|---|---|
committer | Dave Love <fx@gnu.org> | 2000-06-20 09:37:48 +0000 |
commit | db5f1c439a1cdc65ce9d9247956314a3a8f11c25 (patch) | |
tree | 163ee7c7f170878f536583b3f81eeebe06077ec1 /lisp/emulation | |
parent | 943e731c81c574ebbfdcd49cd008d5f92aa23357 (diff) | |
download | emacs-db5f1c439a1cdc65ce9d9247956314a3a8f11c25.tar.gz |
(define-hooked-local-abbrev, define-hooked-global-abbrev): Fix, using
define-abbrev.
Diffstat (limited to 'lisp/emulation')
-rw-r--r-- | lisp/emulation/mlsupport.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/emulation/mlsupport.el b/lisp/emulation/mlsupport.el index 7f7a357cc3c..ab32291dbfe 100644 --- a/lisp/emulation/mlsupport.el +++ b/lisp/emulation/mlsupport.el @@ -227,10 +227,10 @@ (symbol-value symbol))) (defun define-hooked-local-abbrev (name exp hook) - (define-local-abbrev name exp (intern hook))) + (define-abbrev local-abbrev-table name exp (intern hook))) (defun define-hooked-global-abbrev (name exp hook) - (define-global-abbrev name exp (intern hook))) + (define-abbrev global-abbrev-table name exp (intern hook))) (defun case-word-lower () (ml-casify-word 'downcase-region)) |