aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlan Mackenzie2016-08-20 20:46:39 +0000
committerAlan Mackenzie2016-08-20 20:46:39 +0000
commitf0ee3ca5a92d5503268da7f9e0d71a1a58893c8a (patch)
tree4f9e169746164f50295fdb66dea39abbb2aed796
parent43201d7117e303fd6d3b78af1490021af130d7c1 (diff)
downloademacs-f0ee3ca5a92d5503268da7f9e0d71a1a58893c8a.tar.gz
emacs-f0ee3ca5a92d5503268da7f9e0d71a1a58893c8a.zip
* lisp/progmodes/cc-defs.el (c-safe-scan-lists): Resolve overelaborate "nil"
-rw-r--r--lisp/progmodes/cc-defs.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/progmodes/cc-defs.el b/lisp/progmodes/cc-defs.el
index ba9f1b69c50..ab4baa247b9 100644
--- a/lisp/progmodes/cc-defs.el
+++ b/lisp/progmodes/cc-defs.el
@@ -640,7 +640,7 @@ right side of it."
640 (let ((res (if (featurep 'xemacs) 640 (let ((res (if (featurep 'xemacs)
641 `(scan-lists ,from ,count ,depth nil t) 641 `(scan-lists ,from ,count ,depth nil t)
642 `(c-safe (scan-lists ,from ,count ,depth))))) 642 `(c-safe (scan-lists ,from ,count ,depth)))))
643 (if (and limit (not (eq limit nil))) 643 (if limit
644 `(save-restriction 644 `(save-restriction
645 (when ,limit 645 (when ,limit
646 ,(if (numberp count) 646 ,(if (numberp count)