* 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.
This commit is contained in:
Jim Blandy
1993-02-14 14:33:24 +00:00
parent 7eadab74c8
commit 29130b950e

View File

@@ -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)