aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJuanma Barranquero2005-10-06 09:25:12 +0000
committerJuanma Barranquero2005-10-06 09:25:12 +0000
commit8dc8d895940caf1c2b556b6cc88ed06cb67a6784 (patch)
tree8008bfb0cbbd1f1a2fd89e64b3a8fddb22dd5128
parenta5e6116d63bcae434b3565de5c9ab7201b0a71bd (diff)
downloademacs-8dc8d895940caf1c2b556b6cc88ed06cb67a6784.tar.gz
emacs-8dc8d895940caf1c2b556b6cc88ed06cb67a6784.zip
(gdb-buffer-fringe-width): Add defvar.
-rw-r--r--lisp/ChangeLog1
-rw-r--r--lisp/progmodes/gdb-ui.el3
2 files changed, 3 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 45a9206c167..7729d9494d4 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -2,6 +2,7 @@
2 2
3 * dframe.el (x-pointer-hand2, x-pointer-top-left-arrow): 3 * dframe.el (x-pointer-hand2, x-pointer-top-left-arrow):
4 * wid-edit.el (widget): 4 * wid-edit.el (widget):
5 * progmodes/gdb-ui.el (gdb-buffer-fringe-width):
5 * progmodes/vhdl-mode.el (speedbar-attached-frame): Add defvars. 6 * progmodes/vhdl-mode.el (speedbar-attached-frame): Add defvars.
6 7
72005-10-06 Kenichi Handa <handa@m17n.org> 82005-10-06 Kenichi Handa <handa@m17n.org>
diff --git a/lisp/progmodes/gdb-ui.el b/lisp/progmodes/gdb-ui.el
index 5ab5eb71abb..357df7e60b6 100644
--- a/lisp/progmodes/gdb-ui.el
+++ b/lisp/progmodes/gdb-ui.el
@@ -79,6 +79,7 @@
79 79
80(require 'gud) 80(require 'gud)
81 81
82(defvar gdb-buffer-fringe-width)
82(defvar tool-bar-map) 83(defvar tool-bar-map)
83 84
84(defvar gdb-frame-address "main" "Initialization for Assembler buffer.") 85(defvar gdb-frame-address "main" "Initialization for Assembler buffer.")
@@ -2150,7 +2151,7 @@ corresponding to the mode line clicked."
2150 (1 font-lock-variable-name-face) 2151 (1 font-lock-variable-name-face)
2151 (3 font-lock-keyword-face) 2152 (3 font-lock-keyword-face)
2152 (4 font-lock-type-face)) 2153 (4 font-lock-type-face))
2153 ;; var = (type) value 2154 ;; var = (type) value
2154 ( "\\(^\\(\\sw\\|[_.]\\)+\\) += +(\\(\\(\\sw\\|[_.]\\)+\\)" 2155 ( "\\(^\\(\\sw\\|[_.]\\)+\\) += +(\\(\\(\\sw\\|[_.]\\)+\\)"
2155 (1 font-lock-variable-name-face) 2156 (1 font-lock-variable-name-face)
2156 (3 font-lock-type-face)) 2157 (3 font-lock-type-face))