2014-07-19 Stefan Monnier <monnier@iro.umontreal.ca>
+ * xt-mouse.el (xterm-mouse-event): Don't assume last-click is non-nil
+ (bug#18015).
+
* rect.el (rectangle--string-preview): Don't assume there
a non-nil default (bug#17984).
((not (string-match "down-" name))
;; For up events, make the up side match the down side.
(setq this-time last-time)
- (when (and (> click-count 1)
+ (when (and click-count (> click-count 1)
(string-match "down-" last-name)
(equal name (replace-match "" t t last-name)))
(xterm-mouse--set-click-count event click-count)))