* net/dbus.el (dbus-register-signal): Convert "N" of ":argN" to
integer before comparison.
+2015-02-26 Daiki Ueno <ueno@gnu.org>
+
+ * net/dbus.el (dbus-register-signal): Convert "N" of ":argN" to
+ integer before comparison.
+
2015-02-25 Nicolas Richard <theonewiththeevillook@yahoo.fr>
* progmodes/elisp-mode.el (elisp--eval-last-sexp): Document argument.
(setq counter (match-string 2 (symbol-name key))
args (cdr args)
value (car args))
- (unless (and (<= counter 63) (stringp value))
+ (unless (and (<= (string-to-number counter) 63)
+ (stringp value))
(signal 'wrong-type-argument
(list "Wrong argument" key value)))
(format