[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Emacs-diffs] emacs/lisp/progmodes compile.el
From: |
Sam Steingold |
Subject: |
[Emacs-diffs] emacs/lisp/progmodes compile.el |
Date: |
Tue, 13 Oct 2009 02:59:19 +0000 |
CVSROOT: /sources/emacs
Module name: emacs
Changes by: Sam Steingold <sds> 09/10/13 02:59:19
Modified files:
lisp/progmodes : compile.el
Log message:
fix a typo in the last patch
CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/emacs/lisp/progmodes/compile.el?cvsroot=emacs&r1=1.499&r2=1.500
Patches:
Index: compile.el
===================================================================
RCS file: /sources/emacs/emacs/lisp/progmodes/compile.el,v
retrieving revision 1.499
retrieving revision 1.500
diff -u -b -r1.499 -r1.500
--- compile.el 12 Oct 2009 21:04:18 -0000 1.499
+++ compile.el 13 Oct 2009 02:59:19 -0000 1.500
@@ -991,7 +991,7 @@
;; note that omake usage is not limited to ocaml and C (for stubs).
(when (and (= ?^ (aref pat 0)) ; anchored: starts with "^"
;; but does not allow an arbitrary number of leading
spaces
- (not (and (= ? (aref pat 1)) (= ?* (aref pat 1)))))
+ (not (and (= ? (aref pat 1)) (= ?* (aref pat 2)))))
(setq pat (concat "^ *" (substring pat 1))))
(if (consp file) (setq fmt (cdr file) file (car file)))
(if (consp line) (setq end-line (cdr line) line (car line)))
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [Emacs-diffs] emacs/lisp/progmodes compile.el,
Sam Steingold <=