aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/cedet/srecode/map.el
diff options
context:
space:
mode:
Diffstat (limited to 'lisp/cedet/srecode/map.el')
-rw-r--r--lisp/cedet/srecode/map.el4
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."
346Argument FAST implies that the file should not be reparsed if there 346Argument FAST implies that the file should not be reparsed if there
347is already an entry for it. 347is already an entry for it.
348Return non-nil if the map changed." 348Return 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