diff options
author | Stefan Monnier <monnier@iro.umontreal.ca> | 2011-01-31 12:11:11 -0500 |
---|---|---|
committer | Stefan Monnier <monnier@iro.umontreal.ca> | 2011-01-31 12:11:11 -0500 |
commit | 1dc4075fa8809805aed5092e93e225e889725c94 (patch) | |
tree | 10e6b67557007fbfac3c2e3190aca5c7b25ca1d2 | |
parent | 9e11271c559360ab8df313aebdba1df067e4db9f (diff) | |
download | emacs-1dc4075fa8809805aed5092e93e225e889725c94.tar.gz |
Fix last-minute typo in last change.
-rw-r--r-- | lisp/progmodes/compile.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/progmodes/compile.el b/lisp/progmodes/compile.el index f1a5801ea1a..5dde9ba9a98 100644 --- a/lisp/progmodes/compile.el +++ b/lisp/progmodes/compile.el @@ -858,8 +858,8 @@ POS and RES.") ;; ends up having to walk very far back to find the last change. (if (and compilation--previous-directory-cache (< pos (car compilation--previous-directory-cache)) - (or (null (cdr compilation--previous-directory-cache) - (< (cdr compilation--previous-directory-cache) pos)))) + (or (null (cdr compilation--previous-directory-cache)) + (< (cdr compilation--previous-directory-cache) pos))) ;; No need to call previous-single-property-change. (cdr compilation--previous-directory-cache) |