]> git.eshelyaron.com Git - emacs.git/commitdiff
(GUD Customization): Describe cases %d and %c.
authorNick Roberts <nickrob@snap.net.nz>
Sun, 30 Apr 2006 23:16:47 +0000 (23:16 +0000)
committerNick Roberts <nickrob@snap.net.nz>
Sun, 30 Apr 2006 23:16:47 +0000 (23:16 +0000)
Update description for %e.

man/building.texi

index 57ecbeb2a5bcbf69a7a977ff39ec5193e5db4771..0cbaa5d1826c485dc4c3b1acc99972034a79a75b 100644 (file)
@@ -766,8 +766,6 @@ the command to @kbd{C-c @var{binding}} in the GUD buffer's mode and to
 The name of the current source file.  If the current buffer is the GUD
 buffer, then the ``current source file'' is the file that the program
 stopped in.
-@c This said, ``the name of the file the program counter was in at the last breakpoint.''
-@c But I suspect it is really the last stop file.
 
 @item %l
 The number of the current source line.  If the current buffer is the GUD
@@ -775,7 +773,9 @@ buffer, then the ``current source line'' is the line that the program
 stopped in.
 
 @item %e
-The text of the C lvalue or function-call expression at or adjacent to point.
+In transient-mark-mode the text in the region, if it is active.
+Otherwise the text of the C lvalue or function-call expression at or
+adjacent to point.
 
 @item %a
 The text of the hexadecimal address at or adjacent to point.
@@ -787,6 +787,13 @@ empty string.
 
 If you don't use @samp{%p} in the command string, the command you define
 ignores any numeric argument.
+
+@item %d
+The name of the directory of the current source file.
+
+@item %c
+Fully qualified class name derived from the expression surrounding point
+(jdb only).
 @end table
 
 @node GDB Graphical Interface