From: Glenn Morris Date: Thu, 30 May 2013 23:33:08 +0000 (-0400) Subject: * lisp/progmodes/gdb-mi.el (gdb-wait-for-pending): Fix typo. X-Git-Tag: emacs-24.3.90~173^2^2~42^2~45^2~387^2~2026^2~121 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=8accd027c4ac0c73c8783eb2ae1bedeeee09d3da;p=emacs.git * lisp/progmodes/gdb-mi.el (gdb-wait-for-pending): Fix typo. --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index e7532cdbd07..fc0ba8a116a 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -6,6 +6,8 @@ 2013-05-30 Glenn Morris + * progmodes/gdb-mi.el (gdb-wait-for-pending): Fix typo. + * progmodes/cc-bytecomp.el (cc-bytecomp-noruntime-functions): New. (cc-require): Suppress spurious "noruntime" warnings. (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'." `(run-with-timer 0.5 nil '(lambda () - (if (not (gdb-find-if (lambda (handler) + (if (not (cl-find-if (lambda (handler) (gdb-handler-pending-trigger handler)) gdb-handler-list)) (progn ,@body)