emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] Changes to emacs/man/cc-mode.texi


From: Alan Mackenzie
Subject: [Emacs-diffs] Changes to emacs/man/cc-mode.texi
Date: Fri, 24 Feb 2006 12:20:46 +0000

Index: emacs/man/cc-mode.texi
diff -u emacs/man/cc-mode.texi:1.35 emacs/man/cc-mode.texi:1.36
--- emacs/man/cc-mode.texi:1.35 Sun Feb  5 22:41:30 2006
+++ emacs/man/cc-mode.texi      Fri Feb 24 12:20:45 2006
@@ -208,9 +208,9 @@
 @vskip 0pt plus 1filll
 @insertcopying
 
-This manual was generated from $Revision: 1.35 $ of $RCSfile: cc-mode.texi,v 
$, which can be
+This manual was generated from $Revision: 1.36 $ of $RCSfile: cc-mode.texi,v 
$, which can be
 downloaded from
address@hidden://cvs.sf.net/viewcvs.py/cc-mode/cc-mode/cc-mode.texi}.
address@hidden://cvs.savannah.gnu.org/viewcvs/emacs/emacs/man/cc-mode.texi}.
 @end titlepage
 
 @comment !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
@@ -447,7 +447,7 @@
 lists the standard styles that @ccmode{} supplies.
 
 @item
-The next few chapters, describe in detail how to customize the various
+The next few chapters describe in detail how to customize the various
 features of @ccmode{}.
 
 @item
@@ -525,7 +525,7 @@
 be disconcerting until you get used to it.  To disable @dfn{electric
 indentation} in the current buffer, type @kbd{C-c C-l}.  Type the same
 thing to enable it again.  To have electric indentation disabled by
-default, put the following into your @file{.emacs} address@hidden
+default, put the following into your @file{.emacs} address@hidden
 is no ``easy customization'' facility for making this change.}:
 
 @example
@@ -836,8 +836,9 @@
 (@pxref{Comments,,, xemacs, XEmacs User's Manual})
 @end ifset
 and the variables below.  Finally, position the point after the
-comment starter.  This is a standard Emacs command, but @ccmode{}
-enhances it a bit with two variables:
+comment starter.  @kbd{C-u M-;} kills any comment on the current line,
+together with any whitespace before it.  This is a standard Emacs
+command, but @ccmode{} enhances it a bit with two variables:
 
 @defopt c-indent-comment-alist
 @vindex indent-comment-alist (c-)
@@ -887,12 +888,14 @@
 @findex end-of-defun (c-)
 @findex beginning-of-defun
 @findex end-of-defun
-Move to the start or end of the current top-level definition, this
-being the outermost brace pair which encloses point.  These functions
-are analogous to the Emacs built-in commands @code{beginning-of-defun}
-and @code{end-of-defun}, except they eliminate the constraint that the
-top-level opening brace of the defun must be in column zero.  See
address@hidden,,,@emacsman{}, @emacsmantitle{}}, for more information.
+Move to the start or end of the current top-level definition.  This is
+the outermost brace pair which encloses point, together with the
+function header or similar preamble which precedes the opening brace.
+These functions are analogous to the Emacs built-in commands
address@hidden and @code{end-of-defun}, except they
+eliminate the constraint that the top-level opening brace of the defun
+must be in column zero.  See @ref{Defuns,,,@emacsman{},
address@hidden, for more information.
 
 Depending on the coding style you're using, you might prefer these two
 commands to the standard Emacs ones.  If so, consider binding them to
@@ -1220,15 +1223,16 @@
 
 Most punctuation keys provide @dfn{electric} behavior - as well as
 inserting themselves they perform some other action, such as
-reindenting the line.  A few keywords, such as @code{else}, also
-trigger electric action.
+reindenting the line.  This reindentation saves you from having to
+reindent a line manually after typing, say, a @address@hidden  A few
+keywords, such as @code{else}, also trigger electric action.
 
 You can inhibit the electric behaviour described here by disabling
-electric minor mode (@pxref{Minor Modes}.)
+electric minor mode (@pxref{Minor Modes}).
 
-Common to all of them is that they only behave electrically when used
-in normal code (as contrasted with getting typed in a string literal
-or comment).  Those which cause re-indentation do so only when
+Common to all these keys is that they only behave electrically when
+used in normal code (as contrasted with getting typed in a string
+literal or comment).  Those which cause re-indentation do so only when
 @code{c-syntactic-indentation} has a address@hidden value (which it
 does by default).
 
@@ -1453,8 +1457,6 @@
 @cindex hungry-deletion
 @comment !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
 
address@hidden C-d
-
 If you want to delete an entire block of whitespace at point, you can
 use @dfn{hungry deletion}.  This deletes all the contiguous whitespace
 either before point or after point in a single operation.
@@ -1468,6 +1470,10 @@
 useful.  In fact, you might find yourself wanting it in @strong{all}
 your editing modes!
 
+Loosely speaking, in what follows, @address@hidden means ``the
+backspace key'' and @address@hidden means ``the forward delete
+key''.  This is discussed in more detail below.
+
 There are two different ways you can use hungry deletion:
 
 @table @asis
@@ -1476,7 +1482,7 @@
 address@hidden to @ccmode{} 5.31, this command
 was bound to @kbd{C-c C-d}.  @kbd{C-c C-d} is now the default binding
 for @code{c-hungry-delete-forward}.} (@pxref{Minor Modes}.)  This
-makes @address@hidden and @kbd{C-d} do forward and backwards hungry
+makes @address@hidden and @kbd{C-d} do backwards and forward hungry
 deletion.
 
 @table @asis
@@ -1524,61 +1530,62 @@
 
 @item Using Distinct Bindings
 The other (newer and recommended) way to use hungry deletion is to
-perform @code{c-hungry-backspace} and @code{c-hungry-delete-forward}
-directly through their key sequences rather than using the minor mode
-toggling.
+perform @code{c-hungry-delete-backwards} and
address@hidden directly through their key sequences
+rather than using the minor mode toggling.
 
 @table @asis
address@hidden @kbd{C-c address@hidden, @kbd{C-c DEL}, or @kbd{C-c 
@key{Backspace}} (@code{c-hungry-backspace})
address@hidden @kbd{C-c address@hidden, or @kbd{C-c @key{DEL}} 
(@code{c-hungry-delete-backwards})@footnote{This command was formerly known as 
@code{c-hungry-backspace}.}
 @kindex C-c C-<backspace>
address@hidden C-c DEL
 @kindex C-c <backspace>
address@hidden c-hungry-backspace
address@hidden hungry-backspace (c-)
address@hidden C-c C-DEL
address@hidden C-c DEL
address@hidden c-hungry-delete-backwards
address@hidden hungry-delete-backwards (c-)
 Delete any amount of whitespace in the backwards direction (regardless
 whether hungry-delete mode is enabled or not).  This command is bound
-to both @kbd{C-c address@hidden and @kbd{C-c @key{Backspace}},
-since the more natural one, @kbd{C-c address@hidden, is sometimes
-difficult to type at a character terminal.
+to both @kbd{C-c address@hidden and @kbd{C-c @key{DEL}}, since the more
+natural one, @kbd{C-c address@hidden, is sometimes difficult to type at
+a character terminal.
 
address@hidden @kbd{C-c address@hidden, @kbd{C-c C-d}, or @kbd{C-c 
@key{Delete}} (@code{c-hungry-delete-forward})
address@hidden C-c C-<delete>
address@hidden @kbd{C-c C-d}, @kbd{C-c address@hidden, or @kbd{C-c 
@key{DELETE}} (@code{c-hungry-delete-forward})
 @kindex C-c C-d
address@hidden C-c <delete>
address@hidden C-c C-<DELETE>
address@hidden C-c <DELETE>
 @findex c-hungry-delete-forward
 @findex hungry-delete-forward (c-)
 Delete any amount of whitespace in the forward direction (regardless
 whether hungry-delete mode is enabled or not).  This command is bound
-to both @kbd{C-c address@hidden and @kbd{C-c @key{Delete}} for the
-same reason as for @key{Backspace} above.
+to both @kbd{C-c address@hidden and @kbd{C-c @key{DELETE}} for the
+same reason as for @key{DEL} above.
 @end table
 @end table
 
 @kindex <delete>
 @kindex <backspace>
 
-When we talk about @kbd{DEL}, @kbd{C-d}, @key{Backspace} and
address@hidden above, we actually do so without connecting them to the
-physical keys commonly known as @key{Backspace} and @key{Delete}.  The
-default bindings to those two keys depends on the flavor of (X)Emacs
-you are using.
+When we talk about @address@hidden, and @address@hidden above, we
+actually do so without connecting them to the physical keys commonly
+known as @key{Backspace} and @key{Delete}.  The default bindings to
+those two keys depends on the flavor of (X)Emacs you are using.
 
 @findex c-electric-delete
 @findex electric-delete (c-)
 @findex c-hungry-delete
 @findex hungry-delete (c-)
 @vindex delete-key-deletes-forward
-
 In XEmacs 20.3 and beyond, the @key{Backspace} key is bound to
 @code{c-electric-backspace} and the @key{Delete} key is bound to
 @code{c-electric-delete}.  You control the direction it deletes in by
 setting the variable @code{delete-key-deletes-forward}, a standard
-XEmacs variable.  When this variable is address@hidden,
address@hidden will do forward deletion with
address@hidden, otherwise it does backward deletion
-with @code{c-electric-backspace}.  Similarly, @kbd{C-c @key{Delete}}
-and @kbd{C-c address@hidden are bound to @code{c-hungry-delete} which
-is controlled in the same way by @code{delete-key-deletes-forward}.
+XEmacs variable.
address@hidden This variable is encapsulated by XEmacs's (defsubst 
delete-forward-p ...).
+When this variable is address@hidden, @code{c-electric-delete} will do
+forward deletion with @code{c-electric-delete-forward}, otherwise it
+does backward deletion with @code{c-electric-backspace}.  Similarly,
address@hidden @key{Delete}} and @kbd{C-c address@hidden are bound to
address@hidden which is controlled in the same way by
address@hidden
 
 @findex normal-erase-is-backspace-mode
 




reply via email to

[Prev in Thread] Current Thread [Next in Thread]