+2013-07-18 Richard Copley <rcopley@gmail.com> (tiny change)
+
+ * progmodes/gdb-mi.el (gdb-done-or-error):
+ Guard against "%" in gdb output. (Bug#14127)
+
2013-07-08 Andreas Schwab <schwab@linux-m68k.org>
* progmodes/sh-script.el (sh-read-variable): Remove interactive
;; MI error - send to minibuffer
(when (eq type 'error)
;; Skip "msg=" from `output-field'
- (message (read (substring output-field 4)))
+ (message "%s" (read (substring output-field 4)))
;; Don't send to the console twice. (If it is a console error
;; it is also in the console stream.)
(setq output-field nil)))