diff options
| author | Alan Mackenzie | 2016-08-20 20:46:39 +0000 |
|---|---|---|
| committer | Alan Mackenzie | 2016-08-20 20:46:39 +0000 |
| commit | f0ee3ca5a92d5503268da7f9e0d71a1a58893c8a (patch) | |
| tree | 4f9e169746164f50295fdb66dea39abbb2aed796 | |
| parent | 43201d7117e303fd6d3b78af1490021af130d7c1 (diff) | |
| download | emacs-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.el | 2 |
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) |