diff options
| -rw-r--r-- | lisp/ChangeLog | 9 | ||||
| -rw-r--r-- | lisp/progmodes/gdb-ui.el | 3 |
2 files changed, 12 insertions, 0 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index e1540d5920e..592015b467a 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,12 @@ | |||
| 1 | 2007-12-01 Glenn Morris <rgm@gnu.org> | ||
| 2 | |||
| 3 | * progmodes/gdb-ui.el (gud-remove, gud-break): | ||
| 4 | * progmodes/gud.el (gdb-create-define-alist) | ||
| 5 | (gdb-restore-windows, gdb-reset, global-hl-line-highlight) | ||
| 6 | (hl-line-highlight, gdb-display-source-buffer) | ||
| 7 | (gdb-display-buffer, c-langelem-sym, c-langelem-pos) | ||
| 8 | (syntax-symbol, syntax-point, gdb-enqueue-input): Declare as functions. | ||
| 9 | |||
| 1 | 2007-11-30 Dan Nicolaescu <dann@ics.uci.edu> | 10 | 2007-11-30 Dan Nicolaescu <dann@ics.uci.edu> |
| 2 | 11 | ||
| 3 | * textmodes/org-export-latex.el (org-export-latex-cleaned-string): | 12 | * textmodes/org-export-latex.el (org-export-latex-cleaned-string): |
diff --git a/lisp/progmodes/gdb-ui.el b/lisp/progmodes/gdb-ui.el index 37758fc4441..32db8850b66 100644 --- a/lisp/progmodes/gdb-ui.el +++ b/lisp/progmodes/gdb-ui.el | |||
| @@ -1938,6 +1938,9 @@ static char *magick[] = { | |||
| 1938 | (end-of-line)))))) | 1938 | (end-of-line)))))) |
| 1939 | (if (gdb-get-buffer 'gdb-assembler-buffer) (gdb-assembler-custom))) | 1939 | (if (gdb-get-buffer 'gdb-assembler-buffer) (gdb-assembler-custom))) |
| 1940 | 1940 | ||
| 1941 | (declare-function gud-remove "gdb-ui" t t) ; gud-def | ||
| 1942 | (declare-function gud-break "gdb-ui" t t) ; gud-def | ||
| 1943 | |||
| 1941 | (defun gdb-mouse-set-clear-breakpoint (event) | 1944 | (defun gdb-mouse-set-clear-breakpoint (event) |
| 1942 | "Set/clear breakpoint in left fringe/margin with mouse click." | 1945 | "Set/clear breakpoint in left fringe/margin with mouse click." |
| 1943 | (interactive "e") | 1946 | (interactive "e") |