]> git.eshelyaron.com Git - emacs.git/commitdiff
* lisp/progmodes/gdb-mi.el (gdb-wait-for-pending): Fix typo.
authorGlenn Morris <rgm@gnu.org>
Thu, 30 May 2013 23:33:08 +0000 (19:33 -0400)
committerGlenn Morris <rgm@gnu.org>
Thu, 30 May 2013 23:33:08 +0000 (19:33 -0400)
lisp/ChangeLog
lisp/progmodes/gdb-mi.el

index e7532cdbd07701e6507781e4669655b90e8f470b..fc0ba8a116a35d72df3a25d06c69141c1aa9dce2 100644 (file)
@@ -6,6 +6,8 @@
 
 2013-05-30  Glenn Morris  <rgm@gnu.org>
 
+       * 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.
index a6ad57365765f901ffdf2e8f55722076d34b992e..0b52302a98d610fbf6220c31c558aa4d6505c19b 100644 (file)
@@ -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)