aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Morris2011-03-22 19:50:28 -0700
committerGlenn Morris2011-03-22 19:50:28 -0700
commit927c53e762b4134a959bdad6df4d4ea6befe84b6 (patch)
tree13ae2f8137e0246274140097f69756bff1150b13
parentc9c49752e15c105ded153e9ab0a42743f57184e5 (diff)
downloademacs-927c53e762b4134a959bdad6df4d4ea6befe84b6.tar.gz
emacs-927c53e762b4134a959bdad6df4d4ea6befe84b6.zip
* lisp/progmodes/gdb-mi.el (gdb): Fix typo in previous change.
-rw-r--r--lisp/ChangeLog4
-rw-r--r--lisp/progmodes/gdb-mi.el2
2 files changed, 5 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index e508174e118..adfbc6ce440 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,7 @@
12011-03-23 Glenn Morris <rgm@gnu.org>
2
3 * progmodes/gdb-mi.el (gdb): Fix typo in previous change.
4
12011-03-22 Juanma Barranquero <lekktu@gmail.com> 52011-03-22 Juanma Barranquero <lekktu@gmail.com>
2 6
3 * emacs-lisp/derived.el (define-derived-mode): Wrap declaration of 7 * emacs-lisp/derived.el (define-derived-mode): Wrap declaration of
diff --git a/lisp/progmodes/gdb-mi.el b/lisp/progmodes/gdb-mi.el
index ab315f9eefd..6aece579d5d 100644
--- a/lisp/progmodes/gdb-mi.el
+++ b/lisp/progmodes/gdb-mi.el
@@ -648,7 +648,7 @@ detailed description of this mode.
648 (set (make-local-variable 'gud-minor-mode) 'gdbmi) 648 (set (make-local-variable 'gud-minor-mode) 'gdbmi)
649 (setq comint-input-sender 'gdb-send) 649 (setq comint-input-sender 'gdb-send)
650 (when (ring-empty-p comint-input-ring) ; cf shell-mode 650 (when (ring-empty-p comint-input-ring) ; cf shell-mode
651 (let ((hfile (expand-file-name (or (getenv "GBDHISTFILE") 651 (let ((hfile (expand-file-name (or (getenv "GDBHISTFILE")
652 (if (eq system-type 'ms-dos) 652 (if (eq system-type 'ms-dos)
653 "_gdb_history" 653 "_gdb_history"
654 ".gdb_history")))) 654 ".gdb_history"))))