diff options
Diffstat (limited to 'lisp/cedet/srecode')
| -rw-r--r-- | lisp/cedet/srecode/map.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/cedet/srecode/map.el b/lisp/cedet/srecode/map.el index 08ff0e6305e..343cc9155d3 100644 --- a/lisp/cedet/srecode/map.el +++ b/lisp/cedet/srecode/map.el | |||
| @@ -346,8 +346,8 @@ if that file is NEW, otherwise assume the mode has not changed." | |||
| 346 | Argument FAST implies that the file should not be reparsed if there | 346 | Argument FAST implies that the file should not be reparsed if there |
| 347 | is already an entry for it. | 347 | is already an entry for it. |
| 348 | Return non-nil if the map changed." | 348 | Return non-nil if the map changed." |
| 349 | (when (or (not fast) | 349 | (unless (and fast |
| 350 | (not (srecode-map-entry-for-file-anywhere srecode-current-map file))) | 350 | (srecode-map-entry-for-file-anywhere srecode-current-map file)) |
| 351 | (let ((buff-orig (get-file-buffer file)) | 351 | (let ((buff-orig (get-file-buffer file)) |
| 352 | (dirty nil)) | 352 | (dirty nil)) |
| 353 | (save-excursion | 353 | (save-excursion |