From 29130b950e699f967beab4d378db796d8b7fa2e5 Mon Sep 17 00:00:00 2001 From: Jim Blandy Date: Sun, 14 Feb 1993 14:33:24 +0000 Subject: [PATCH] * 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. --- lisp/gosmacs.el | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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)