aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Morris2013-05-30 19:33:08 -0400
committerGlenn Morris2013-05-30 19:33:08 -0400
commit8accd027c4ac0c73c8783eb2ae1bedeeee09d3da (patch)
tree31915875f1a4a1f898f9e890bf2f81fd784f77e7
parentab1bdce51e336b4433dbbc0949b4dc02773831de (diff)
downloademacs-8accd027c4ac0c73c8783eb2ae1bedeeee09d3da.tar.gz
emacs-8accd027c4ac0c73c8783eb2ae1bedeeee09d3da.zip
* lisp/progmodes/gdb-mi.el (gdb-wait-for-pending): Fix typo.
-rw-r--r--lisp/ChangeLog2
-rw-r--r--lisp/progmodes/gdb-mi.el2
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
72013-05-30 Glenn Morris <rgm@gnu.org> 72013-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)