]> git.eshelyaron.com Git - emacs.git/commitdiff
programs.texi ("Hungry Delete"): Correct the appellation of the backspace
authorAlan Mackenzie <acm@muc.de>
Sat, 11 Feb 2006 19:44:02 +0000 (19:44 +0000)
committerAlan Mackenzie <acm@muc.de>
Sat, 11 Feb 2006 19:44:02 +0000 (19:44 +0000)
and delete keys to @kbd{DEL} and @kbd{DELETE}.

man/ChangeLog
man/programs.texi

index 3aa2faaf985c16b952f35f315b206e4bb66989a9..cd7700333df0e9a0238c2c1c2b617d791bda8a87 100644 (file)
@@ -1,3 +1,8 @@
+2006-02-11  Alan Mackenzie  <acm@muc.de>
+
+       * programs.texi ("Hungry Delete"): Correct the appellation of the
+       backspace and delete keys to @kbd{DEL} and @kbd{DELETE}.
+
 2006-02-11  Mathias Dahl  <mathias.dahl@gmail.com>
 
        * dired.texi (Tumme): Fixed small bug.
index f4df93a0d4330db8c7c3db18347d290ec5e75f55..6404e3466bc953a860095b7d972fc08e48845a31 100644 (file)
@@ -1552,28 +1552,28 @@ whitespace either before point or after point in a single operation.
 preprocessor commands.
 
 @table @kbd
-@item C-c C-@key{BS}
-@itemx C-c @key{BS}
+@item C-c C-@key{DEL}
+@itemx C-c @key{DEL}
 @findex c-hungry-backspace
-@kindex C-c C-@key{BS} (C Mode)
-@kindex C-c @key{BS} (C Mode)
+@kindex C-c C-@key{DEL} (C Mode)
+@kindex C-c @key{DEL} (C Mode)
 @code{c-hungry-backspace}---Delete the entire block of whitespace
 preceding point.
 
 @item C-c C-d
-@itemx C-c C-@key{DEL}
-@itemx C-c @key{DEL}
+@itemx C-c C-@key{DELETE}
+@itemx C-c @key{DELETE}
 @findex c-hungry-delete-forward
 @kindex C-c C-d (C Mode)
-@kindex C-c C-@key{DEL} (C Mode)
-@kindex C-c @key{DEL} (C Mode)
+@kindex C-c C-@key{DELETE} (C Mode)
+@kindex C-c @key{DELETE} (C Mode)
 @code{c-hungry-delete-forward}---Delete the entire block of whitespace
 following point.
 @end table
 
   As an alternative to the above commands, you can enable @dfn{hungry
 delete mode}.  When this feature is enabled (indicated by @samp{/h} in
-the mode line after the mode name), a single @key{BS} command deletes
+the mode line after the mode name), a single @key{DEL} command deletes
 all preceding whitespace, not just one space, and a single @kbd{C-c
 C-d} (but @emph{not} @key{DELETE}) deletes all following whitespace.