Changeset 4166 for trunk/lisp/progmodes/compile.el
- Timestamp:
- 09/18/06 20:48:14 (2 years ago)
- Files:
-
- trunk/lisp/progmodes/compile.el (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/lisp/progmodes/compile.el
r4161 r4166 230 230 ;; line number starts with "SS". --Stef 231 231 "^\\(?:[[:alpha:]][-[:alnum:].]+: ?\\)?\ 232 \\([0-9]*[^0-9\n] .*?\\): ?\232 \\([0-9]*[^0-9\n]\\(?:[^\n ]\\| [^-\n]\\)*?\\): ?\ 233 233 \\([0-9]+\\)\\(?:\\([.:]\\)\\([0-9]+\\)\\)?\ 234 234 \\(?:-\\([0-9]+\\)?\\(?:\\3\\([0-9]+\\)\\)?\\)?:\ … … 626 626 mouse-face highlight 627 627 keymap compilation-button-map 628 help-echo "mouse-2: visit currentdirectory")))628 help-echo "mouse-2: visit this directory"))) 629 629 630 630 ;; Data type `reverse-ordered-alist' retriever. This function retrieves the … … 1069 1069 ;; Set the EMACS variable, but 1070 1070 ;; don't override users' setting of $EMACS. 1071 (unless (getenv "EMACS") '("EMACS=t")) 1071 (unless (getenv "EMACS") 1072 (list (concat "EMACS=" invocation-directory invocation-name))) 1072 1073 (copy-sequence process-environment)))) 1073 1074 (set (make-local-variable 'compilation-arguments)
