diff options
author | Jim Blandy <jimb@redhat.com> | 1993-02-14 14:33:24 +0000 |
---|---|---|
committer | Jim Blandy <jimb@redhat.com> | 1993-02-14 14:33:24 +0000 |
commit | fd57405b0fb01047cd8bbfad5b476e95e03a2cbd (patch) | |
tree | 50042127dcd5df4b2ea70051b6cf059e1d33cba1 /lisp/=gosmacs.el | |
parent | 88bd37c0e6cef7a5c0767d4be858c73a072c78e4 (diff) | |
download | emacs-fd57405b0fb01047cd8bbfad5b476e95e03a2cbd.tar.gz |
* gosmacs.el: Bind M-h to delete-previous-word, not
backward-kill-word; the latter has different prefix semantics.
* gosmacs.el: Require 'mlsupport, to get definition of
backward-kill-word.
Diffstat (limited to 'lisp/=gosmacs.el')
-rw-r--r-- | lisp/=gosmacs.el | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lisp/=gosmacs.el b/lisp/=gosmacs.el index fa3e58fb1f3..c432f4293cf 100644 --- a/lisp/=gosmacs.el +++ b/lisp/=gosmacs.el @@ -23,6 +23,8 @@ ;;; Code: +(require 'mlsupport) + (defvar non-gosmacs-binding-alist nil) ;;;###autoload @@ -53,7 +55,7 @@ Use \\[set-gnu-bindings] to restore previous global bindings." ("\e(" backward-paragraph) ("\e)" forward-paragraph) ("\e?" apropos) - ("\eh" backward-kill-word) + ("\eh" delete-previous-word) ("\ej" indent-sexp) ("\eq" query-replace) ("\er" replace-string) |