emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] /srv/bzr/emacs/trunk r103054: Fix last-minute typo in last


From: Stefan Monnier
Subject: [Emacs-diffs] /srv/bzr/emacs/trunk r103054: Fix last-minute typo in last change.
Date: Mon, 31 Jan 2011 12:11:11 -0500
User-agent: Bazaar (2.0.3)

------------------------------------------------------------
revno: 103054
committer: Stefan Monnier <address@hidden>
branch nick: trunk
timestamp: Mon 2011-01-31 12:11:11 -0500
message:
  Fix last-minute typo in last change.
modified:
  lisp/progmodes/compile.el
=== modified file 'lisp/progmodes/compile.el'
--- a/lisp/progmodes/compile.el 2011-01-31 17:09:42 +0000
+++ b/lisp/progmodes/compile.el 2011-01-31 17:11:11 +0000
@@ -858,8 +858,8 @@
   ;; 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)
    


reply via email to

[Prev in Thread] Current Thread [Next in Thread]