diff options
| -rw-r--r-- | lisp/ChangeLog | 2 | ||||
| -rw-r--r-- | lisp/progmodes/gdb-mi.el | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index e7532cdbd07..fc0ba8a116a 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -6,6 +6,8 @@ | |||
| 6 | 6 | ||
| 7 | 2013-05-30 Glenn Morris <rgm@gnu.org> | 7 | 2013-05-30 Glenn Morris <rgm@gnu.org> |
| 8 | 8 | ||
| 9 | * progmodes/gdb-mi.el (gdb-wait-for-pending): Fix typo. | ||
| 10 | |||
| 9 | * progmodes/cc-bytecomp.el (cc-bytecomp-noruntime-functions): New. | 11 | * progmodes/cc-bytecomp.el (cc-bytecomp-noruntime-functions): New. |
| 10 | (cc-require): Suppress spurious "noruntime" warnings. | 12 | (cc-require): Suppress spurious "noruntime" warnings. |
| 11 | (cc-require-when-compile): Use fboundp, for sake of compiler. | 13 | (cc-require-when-compile): Use fboundp, for sake of compiler. |
diff --git a/lisp/progmodes/gdb-mi.el b/lisp/progmodes/gdb-mi.el index a6ad5736576..0b52302a98d 100644 --- a/lisp/progmodes/gdb-mi.el +++ b/lisp/progmodes/gdb-mi.el | |||
| @@ -345,7 +345,7 @@ triggers in `gdb-handler-list'." | |||
| 345 | `(run-with-timer | 345 | `(run-with-timer |
| 346 | 0.5 nil | 346 | 0.5 nil |
| 347 | '(lambda () | 347 | '(lambda () |
| 348 | (if (not (gdb-find-if (lambda (handler) | 348 | (if (not (cl-find-if (lambda (handler) |
| 349 | (gdb-handler-pending-trigger handler)) | 349 | (gdb-handler-pending-trigger handler)) |
| 350 | gdb-handler-list)) | 350 | gdb-handler-list)) |
| 351 | (progn ,@body) | 351 | (progn ,@body) |