changeset 1864:1354a2911d11

* 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.
author Jim Blandy <jimb@redhat.com>
date Sun, 14 Feb 1993 14:33:24 +0000
parents 6f55c76b5789
children 05be3e0c082f
files lisp/=gosmacs.el
diffstat 1 files changed, 3 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/=gosmacs.el	Sun Feb 14 14:29:30 1993 +0000
+++ b/lisp/=gosmacs.el	Sun Feb 14 14:33:24 1993 +0000
@@ -23,6 +23,8 @@
 
 ;;; Code:
 
+(require 'mlsupport)
+
 (defvar non-gosmacs-binding-alist nil)
 
 ;;;###autoload
@@ -53,7 +55,7 @@
 	   ("\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)