aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/progmodes/gud.el
diff options
context:
space:
mode:
authorMichaël Cadilhac <[email protected]>2007-10-04 09:27:14 +0000
committerMichaël Cadilhac <[email protected]>2007-10-04 09:27:14 +0000
commitd4f1855ae300afb0ecdbdd94b0841504190b8fbc (patch)
tree52c4979f1539f0b13b602ffc448638d9a9d5437c /lisp/progmodes/gud.el
parent7af32ba04359d2fa23b082cf63e16a66590db16f (diff)
(gud-gud-gdb-command-name): Fix typo in docstring.
Diffstat (limited to 'lisp/progmodes/gud.el')
-rw-r--r--lisp/progmodes/gud.el7
1 files changed, 3 insertions, 4 deletions
diff --git a/lisp/progmodes/gud.el b/lisp/progmodes/gud.el
index 2d715b7a4e..e5217b7162 100644
--- a/lisp/progmodes/gud.el
+++ b/lisp/progmodes/gud.el
@@ -239,7 +239,7 @@ Used to grey out relevant toolbar icons.")
([menu-bar run] menu-item
,(propertize "run" 'face 'font-lock-doc-face) gud-run
:visible (memq gud-minor-mode '(gdbmi gdb dbx jdb)))
- ([menu-bar go] menu-item
+ ([menu-bar go] menu-item
,(propertize " go " 'face 'font-lock-doc-face) gud-go
:visible (and (not gud-running)
(eq gud-minor-mode 'gdba)))
@@ -591,8 +591,7 @@ required by the caller."
(defcustom gud-gud-gdb-command-name "gdb --fullname"
"Default command to run an executable under GDB in text command mode.
-The option \"--fullname\" must be included in it's value."
-
+The option \"--fullname\" must be included in this value."
:type 'string
:group 'gud)
@@ -3111,7 +3110,7 @@ class of the file (using s to separate nested class ids)."
'syntax-table (eval-when-compile
(string-to-syntax "> b")))
;; Make sure that rehighlighting the previous line won't erase our
- ;; syntax-table property.
+ ;; syntax-table property.
(put-text-property (1- (match-beginning 0)) (match-end 0)
'font-lock-multiline t)
nil)))))