2004-05-29 12:55:24 +00:00
|
|
|
;;; flymake.el -- a universal on-the-fly syntax checker
|
|
|
|
|
2005-08-01 08:43:45 +00:00
|
|
|
;; Copyright (C) 2003, 2004, 2005 Free Software Foundation
|
2004-05-29 12:55:24 +00:00
|
|
|
|
|
|
|
;; Author: Pavel Kobiakov <pk_at_work@yahoo.com>
|
|
|
|
;; Maintainer: Pavel Kobiakov <pk_at_work@yahoo.com>
|
|
|
|
;; Version: 0.3
|
|
|
|
;; Keywords: c languages tools
|
|
|
|
|
|
|
|
;; This file is part of GNU Emacs.
|
|
|
|
|
|
|
|
;; GNU Emacs is free software; you can redistribute it and/or modify
|
|
|
|
;; it under the terms of the GNU General Public License as published by
|
|
|
|
;; the Free Software Foundation; either version 2, or (at your option)
|
|
|
|
;; any later version.
|
|
|
|
|
|
|
|
;; GNU Emacs is distributed in the hope that it will be useful,
|
|
|
|
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
;; GNU General Public License for more details.
|
|
|
|
|
|
|
|
;; You should have received a copy of the GNU General Public License
|
|
|
|
;; along with GNU Emacs; see the file COPYING. If not, write to the
|
2005-07-04 17:55:18 +00:00
|
|
|
;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
|
|
|
;; Boston, MA 02110-1301, USA.
|
2004-05-29 12:55:24 +00:00
|
|
|
|
|
|
|
;;; Commentary:
|
|
|
|
;;
|
|
|
|
;; Flymake is a minor Emacs mode performing on-the-fly syntax
|
|
|
|
;; checks using the external syntax check tool (for C/C++ this
|
|
|
|
;; is usually the compiler)
|
|
|
|
|
|
|
|
;;; Code:
|
|
|
|
|
2005-07-03 23:18:19 +00:00
|
|
|
;;;; [[ Silence the byte-compiler
|
|
|
|
|
2005-07-04 18:54:30 +00:00
|
|
|
(defvar flymake-check-start-time)
|
|
|
|
(defvar flymake-check-was-interrupted)
|
|
|
|
(defvar flymake-err-info)
|
|
|
|
(defvar flymake-is-running)
|
|
|
|
(defvar flymake-last-change-time)
|
|
|
|
(defvar flymake-new-err-info)
|
2005-07-03 23:18:19 +00:00
|
|
|
|
|
|
|
;;;; ]]
|
|
|
|
|
2004-11-26 23:56:39 +00:00
|
|
|
;;;; [[ Xemacs overlay compatibility
|
|
|
|
(if (featurep 'xemacs) (progn
|
2004-05-29 12:55:24 +00:00
|
|
|
(autoload 'make-overlay "overlay" "Overlay compatibility kit." t)
|
|
|
|
(autoload 'overlayp "overlay" "Overlay compatibility kit." t)
|
|
|
|
(autoload 'overlays-in "overlay" "Overlay compatibility kit." t)
|
|
|
|
(autoload 'delete-overlay "overlay" "Overlay compatibility kit." t)
|
|
|
|
(autoload 'overlay-put "overlay" "Overlay compatibility kit." t)
|
|
|
|
(autoload 'overlay-get "overlay" "Overlay compatibility kit." t)
|
2004-11-26 23:56:39 +00:00
|
|
|
))
|
2004-05-29 12:55:24 +00:00
|
|
|
;;;; ]]
|
|
|
|
|
|
|
|
;;;; [[ cross-emacs compatibility routines
|
2004-11-26 23:56:39 +00:00
|
|
|
(defsubst flymake-makehash (&optional test)
|
|
|
|
(if (fboundp 'make-hash-table)
|
|
|
|
(if test (make-hash-table :test test) (make-hash-table))
|
2005-05-21 04:53:14 +00:00
|
|
|
(with-no-warnings
|
|
|
|
(makehash test))))
|
2004-11-25 16:43:32 +00:00
|
|
|
|
2005-03-24 22:55:54 +00:00
|
|
|
(defalias 'flymake-float-time
|
|
|
|
(if (fboundp 'float-time)
|
|
|
|
'float-time
|
2005-07-06 19:03:21 +00:00
|
|
|
(if (featurep 'xemacs)
|
|
|
|
(lambda ()
|
|
|
|
(multiple-value-bind (s0 s1 s2) (current-time)
|
|
|
|
(+ (* (float (ash 1 16)) s0) (float s1) (* 0.0000001 s2)))))))
|
2004-11-26 23:56:39 +00:00
|
|
|
|
|
|
|
(defsubst flymake-replace-regexp-in-string (regexp rep str)
|
2005-07-06 19:03:21 +00:00
|
|
|
(if (fboundp 'replace-in-string)
|
|
|
|
(replace-in-string str regexp rep)
|
|
|
|
(replace-regexp-in-string regexp rep str)))
|
2004-11-26 23:56:39 +00:00
|
|
|
|
|
|
|
(defun flymake-split-string (str pattern)
|
2005-04-30 20:13:39 +00:00
|
|
|
"Split STR into a list of substrings bounded by PATTERN.
|
|
|
|
Zero-length substrings at the beginning and end of the list are omitted."
|
2004-11-25 16:43:32 +00:00
|
|
|
(let* ((splitted (split-string str pattern)))
|
|
|
|
(if (and (> (length splitted) 0) (= 0 (length (elt splitted 0))))
|
|
|
|
(setq splitted (cdr splitted)))
|
|
|
|
(if (and (> (length splitted) 0) (= 0 (length (elt splitted (1- (length splitted))))))
|
|
|
|
(setq splitted (reverse (cdr (reverse splitted)))))
|
|
|
|
splitted))
|
|
|
|
|
2004-11-26 23:56:39 +00:00
|
|
|
(defsubst flymake-get-temp-dir ()
|
2005-03-24 22:55:54 +00:00
|
|
|
(if (fboundp 'temp-directory)
|
2004-11-26 23:56:39 +00:00
|
|
|
(temp-directory)
|
|
|
|
temporary-file-directory))
|
2004-05-29 12:55:24 +00:00
|
|
|
|
2005-03-24 22:55:54 +00:00
|
|
|
(defalias 'flymake-line-beginning-position
|
|
|
|
(if (fboundp 'line-beginning-position)
|
|
|
|
'line-beginning-position
|
|
|
|
(lambda (&optional arg) (save-excursion (beginning-of-line arg) (point)))))
|
2004-05-29 12:55:24 +00:00
|
|
|
|
2005-03-24 22:55:54 +00:00
|
|
|
(defalias 'flymake-line-end-position
|
|
|
|
(if (fboundp 'line-end-position)
|
|
|
|
'line-end-position
|
|
|
|
(lambda (&optional arg) (save-excursion (end-of-line arg) (point)))))
|
2004-11-25 16:43:32 +00:00
|
|
|
|
|
|
|
(defun flymake-popup-menu (pos menu-data)
|
2005-04-30 20:13:39 +00:00
|
|
|
"Pop up the flymake menu at position POS, using the data MENU-DATA.
|
|
|
|
POS is a list of the form ((X Y) WINDOW), where X and Y are
|
|
|
|
pixels positions from the top left corner of WINDOW's frame.
|
|
|
|
MENU-DATA is a list of error and warning messages returned by
|
|
|
|
`flymake-make-err-menu-data'."
|
|
|
|
(if (featurep 'xemacs)
|
2004-11-26 23:56:39 +00:00
|
|
|
(let* ((x-pos (nth 0 (nth 0 pos)))
|
|
|
|
(y-pos (nth 1 (nth 0 pos)))
|
|
|
|
(fake-event-props '(button 1 x 1 y 1)))
|
|
|
|
(setq fake-event-props (plist-put fake-event-props 'x x-pos))
|
|
|
|
(setq fake-event-props (plist-put fake-event-props 'y y-pos))
|
|
|
|
(popup-menu (flymake-make-xemacs-menu menu-data) (make-event 'button-press fake-event-props)))
|
|
|
|
(x-popup-menu pos (flymake-make-emacs-menu menu-data))))
|
2004-05-29 12:55:24 +00:00
|
|
|
|
2004-11-25 16:43:32 +00:00
|
|
|
(defun flymake-make-emacs-menu (menu-data)
|
2005-04-30 20:13:39 +00:00
|
|
|
"Return a menu specifier using MENU-DATA.
|
|
|
|
MENU-DATA is a list of error and warning messages returned by
|
|
|
|
`flymake-make-err-menu-data'.
|
|
|
|
See `x-popup-menu' for the menu specifier format."
|
2004-11-25 16:43:32 +00:00
|
|
|
(let* ((menu-title (nth 0 menu-data))
|
|
|
|
(menu-items (nth 1 menu-data))
|
|
|
|
(menu-commands nil))
|
|
|
|
(setq menu-commands (mapcar (lambda (foo)
|
|
|
|
(cons (nth 0 foo) (nth 1 foo)))
|
|
|
|
menu-items))
|
|
|
|
(list menu-title (cons "" menu-commands))))
|
2004-05-29 12:55:24 +00:00
|
|
|
|
2004-11-26 23:56:39 +00:00
|
|
|
(if (featurep 'xemacs) (progn
|
|
|
|
|
2005-03-24 22:55:54 +00:00
|
|
|
(defun flymake-nop ())
|
|
|
|
|
2004-11-25 16:33:53 +00:00
|
|
|
(defun flymake-make-xemacs-menu (menu-data)
|
2005-04-30 20:13:39 +00:00
|
|
|
"Return a menu specifier using MENU-DATA."
|
2004-11-25 16:43:32 +00:00
|
|
|
(let* ((menu-title (nth 0 menu-data))
|
|
|
|
(menu-items (nth 1 menu-data))
|
|
|
|
(menu-commands nil))
|
|
|
|
(setq menu-commands (mapcar (lambda (foo)
|
|
|
|
(vector (nth 0 foo) (or (nth 1 foo) '(flymake-nop)) t))
|
|
|
|
menu-items))
|
|
|
|
(cons menu-title menu-commands)))
|
|
|
|
|
|
|
|
(defun flymake-xemacs-window-edges (&optional window)
|
|
|
|
(let ((edges (window-pixel-edges window))
|
|
|
|
tmp)
|
|
|
|
(setq tmp edges)
|
|
|
|
(setcar tmp (/ (car tmp) (face-width 'default)))
|
|
|
|
(setq tmp (cdr tmp))
|
|
|
|
(setcar tmp (/ (car tmp) (face-height 'default)))
|
|
|
|
(setq tmp (cdr tmp))
|
|
|
|
(setcar tmp (/ (car tmp) (face-width 'default)))
|
|
|
|
(setq tmp (cdr tmp))
|
|
|
|
(setcar tmp (/ (car tmp) (face-height 'default)))
|
|
|
|
edges))
|
|
|
|
|
2004-11-26 23:56:39 +00:00
|
|
|
)) ;; xemacs
|
|
|
|
|
2004-11-25 16:43:32 +00:00
|
|
|
(defun flymake-current-row ()
|
|
|
|
"Return current row number in current frame."
|
2005-03-24 22:55:54 +00:00
|
|
|
(if (fboundp 'window-edges)
|
|
|
|
(+ (car (cdr (window-edges))) (count-lines (window-start) (point)))
|
|
|
|
(count-lines (window-start) (point))))
|
2004-11-25 16:43:32 +00:00
|
|
|
|
|
|
|
(defun flymake-selected-frame ()
|
2005-03-24 22:55:54 +00:00
|
|
|
(if (fboundp 'window-edges)
|
|
|
|
(selected-frame)
|
|
|
|
(selected-window)))
|
2004-05-29 12:55:24 +00:00
|
|
|
|
|
|
|
;;;; ]]
|
|
|
|
|
|
|
|
(defcustom flymake-log-level -1
|
2005-03-24 22:55:54 +00:00
|
|
|
"Logging level, only messages with level lower or equal will be logged.
|
2004-05-29 12:55:24 +00:00
|
|
|
-1 = NONE, 0 = ERROR, 1 = WARNING, 2 = INFO, 3 = DEBUG"
|
2004-11-25 16:43:32 +00:00
|
|
|
:group 'flymake
|
|
|
|
:type 'integer)
|
2004-05-29 12:55:24 +00:00
|
|
|
|
2004-11-25 16:33:53 +00:00
|
|
|
(defun flymake-log (level text &rest args)
|
2005-04-30 20:13:39 +00:00
|
|
|
"Log a message at level LEVEL.
|
|
|
|
If LEVEL is higher than `flymake-log-level', the message is
|
|
|
|
ignored. Otherwise, it is printed using `message'.
|
|
|
|
TEXT is a format control string, and the remaining arguments ARGS
|
|
|
|
are the string substitutions (see `format')."
|
2004-11-25 16:43:32 +00:00
|
|
|
(if (<= level flymake-log-level)
|
|
|
|
(let* ((msg (apply 'format text args)))
|
2005-09-18 12:31:28 +00:00
|
|
|
(message "%s" msg)
|
2004-11-25 16:43:32 +00:00
|
|
|
;;(with-temp-buffer
|
|
|
|
;; (insert msg)
|
|
|
|
;; (insert "\n")
|
|
|
|
;; (flymake-save-buffer-in-file (current-buffer) "d:/flymake.log" t) ; make log file name customizable
|
|
|
|
;;)
|
2004-11-25 16:33:53 +00:00
|
|
|
)))
|
2004-05-29 12:55:24 +00:00
|
|
|
|
2004-11-25 16:33:53 +00:00
|
|
|
(defun flymake-ins-after (list pos val)
|
2004-11-25 16:43:32 +00:00
|
|
|
"Insert VAL into LIST after position POS."
|
|
|
|
(let ((tmp (copy-sequence list))) ; (???)
|
|
|
|
(setcdr (nthcdr pos tmp) (cons val (nthcdr (1+ pos) tmp)))
|
|
|
|
tmp))
|
2004-05-29 12:55:24 +00:00
|
|
|
|
2004-11-25 16:33:53 +00:00
|
|
|
(defun flymake-set-at (list pos val)
|
2005-03-24 22:42:42 +00:00
|
|
|
"Set VAL at position POS in LIST."
|
2004-11-25 16:43:32 +00:00
|
|
|
(let ((tmp (copy-sequence list))) ; (???)
|
|
|
|
(setcar (nthcdr pos tmp) val)
|
|
|
|
tmp))
|
2004-05-29 12:55:24 +00:00
|
|
|
|
2004-11-25 16:33:53 +00:00
|
|
|
(defvar flymake-pid-to-names (flymake-makehash)
|
2005-04-30 20:13:39 +00:00
|
|
|
"Hash table mapping PIDs to source buffer names and output files.")
|
2004-05-29 12:55:24 +00:00
|
|
|
|
2004-11-25 16:33:53 +00:00
|
|
|
(defun flymake-reg-names (pid source-buffer-name)
|
2005-04-30 20:13:39 +00:00
|
|
|
"Associate PID with SOURCE-BUFFER-NAME in `flymake-pid-to-names'."
|
2004-11-25 16:43:32 +00:00
|
|
|
(unless (stringp source-buffer-name)
|
|
|
|
(error "Invalid buffer name"))
|
|
|
|
(puthash pid (list source-buffer-name) flymake-pid-to-names))
|
2004-05-29 12:55:24 +00:00
|
|
|
|
2004-11-25 16:33:53 +00:00
|
|
|
(defun flymake-get-source-buffer-name (pid)
|
2005-04-30 20:13:39 +00:00
|
|
|
"Return buffer name associated with PID in `flymake-pid-to-names'."
|
2004-11-25 16:43:32 +00:00
|
|
|
(nth 0 (gethash pid flymake-pid-to-names)))
|
2004-05-29 12:55:24 +00:00
|
|
|
|
2004-11-25 16:33:53 +00:00
|
|
|
(defun flymake-unreg-names (pid)
|
2005-04-30 20:13:39 +00:00
|
|
|
"Remove the entry associated with PID from `flymake-pid-to-names'."
|
2004-11-25 16:43:32 +00:00
|
|
|
(remhash pid flymake-pid-to-names))
|
2004-05-29 12:55:24 +00:00
|
|
|
|
2004-11-25 16:33:53 +00:00
|
|
|
(defvar flymake-buffer-data (flymake-makehash)
|
|
|
|
"Data specific to syntax check tool, in name-value pairs.")
|
2004-05-29 12:55:24 +00:00
|
|
|
|
|
|
|
(make-variable-buffer-local 'flymake-buffer-data)
|
|
|
|
|
2004-11-25 16:33:53 +00:00
|
|
|
(defun flymake-get-buffer-value (buffer name)
|
2005-04-30 20:13:39 +00:00
|
|
|
(gethash name (with-current-buffer buffer flymake-buffer-data)))
|
2004-11-25 16:33:53 +00:00
|
|
|
|
|
|
|
(defun flymake-set-buffer-value (buffer name value)
|
2005-04-30 20:13:39 +00:00
|
|
|
(puthash name value (with-current-buffer buffer flymake-buffer-data)))
|
2004-11-25 16:33:53 +00:00
|
|
|
|
2005-03-24 22:42:42 +00:00
|
|
|
(defvar flymake-output-residual nil)
|
2004-11-25 16:33:53 +00:00
|
|
|
|
2004-05-29 12:55:24 +00:00
|
|
|
(make-variable-buffer-local 'flymake-output-residual)
|
2004-11-25 16:33:53 +00:00
|
|
|
|
2004-11-25 16:43:32 +00:00
|
|
|
(defcustom flymake-allowed-file-name-masks
|
|
|
|
'((".+\\.c$" flymake-simple-make-init flymake-simple-cleanup flymake-get-real-file-name)
|
|
|
|
(".+\\.cpp$" flymake-simple-make-init flymake-simple-cleanup flymake-get-real-file-name)
|
|
|
|
(".+\\.xml$" flymake-xml-init flymake-simple-cleanup flymake-get-real-file-name)
|
|
|
|
(".+\\.html?$" flymake-xml-init flymake-simple-cleanup flymake-get-real-file-name)
|
|
|
|
(".+\\.cs$" flymake-simple-make-init flymake-simple-cleanup flymake-get-real-file-name)
|
|
|
|
(".+\\.pl$" flymake-perl-init flymake-simple-cleanup flymake-get-real-file-name)
|
|
|
|
(".+\\.h$" flymake-master-make-header-init flymake-master-cleanup flymake-get-real-file-name)
|
|
|
|
(".+\\.java$" flymake-simple-make-java-init flymake-simple-java-cleanup flymake-get-real-file-name)
|
|
|
|
(".+[0-9]+\\.tex$" flymake-master-tex-init flymake-master-cleanup flymake-get-real-file-name)
|
|
|
|
(".+\\.tex$" flymake-simple-tex-init flymake-simple-cleanup flymake-get-real-file-name)
|
|
|
|
(".+\\.idl$" flymake-simple-make-init flymake-simple-cleanup flymake-get-real-file-name)
|
2005-03-24 22:42:42 +00:00
|
|
|
;; (".+\\.cpp$" 1)
|
|
|
|
;; (".+\\.java$" 3)
|
|
|
|
;; (".+\\.h$" 2 (".+\\.cpp$" ".+\\.c$")
|
|
|
|
;; ("[ \t]*#[ \t]*include[ \t]*\"\\([\w0-9/\\_\.]*[/\\]*\\)\\(%s\\)\"" 1 2))
|
|
|
|
;; (".+\\.idl$" 1)
|
|
|
|
;; (".+\\.odl$" 1)
|
|
|
|
;; (".+[0-9]+\\.tex$" 2 (".+\\.tex$")
|
|
|
|
;; ("[ \t]*\\input[ \t]*{\\(.*\\)\\(%s\\)}" 1 2 ))
|
|
|
|
;; (".+\\.tex$" 1)
|
2004-11-25 16:43:32 +00:00
|
|
|
)
|
|
|
|
"*Files syntax checking is allowed for."
|
|
|
|
:group 'flymake
|
|
|
|
:type '(repeat (string symbol symbol symbol)))
|
2004-05-29 12:55:24 +00:00
|
|
|
|
2004-11-25 16:33:53 +00:00
|
|
|
(defun flymake-get-file-name-mode-and-masks (file-name)
|
2005-03-24 22:42:42 +00:00
|
|
|
"Return the corresponding entry from `flymake-allowed-file-name-masks'."
|
2004-11-25 16:43:32 +00:00
|
|
|
(unless (stringp file-name)
|
|
|
|
(error "Invalid file-name"))
|
2005-03-25 00:17:42 +00:00
|
|
|
(let ((fnm flymake-allowed-file-name-masks)
|
2004-11-25 16:43:32 +00:00
|
|
|
(mode-and-masks nil))
|
2005-03-25 00:17:42 +00:00
|
|
|
(while (and (not mode-and-masks) fnm)
|
|
|
|
(if (string-match (car (car fnm)) file-name)
|
|
|
|
(setq mode-and-masks (cdr (car fnm))))
|
|
|
|
(setq fnm (cdr fnm)))
|
2004-11-25 16:43:32 +00:00
|
|
|
(flymake-log 3 "file %s, init=%s" file-name (car mode-and-masks))
|
|
|
|
mode-and-masks))
|
2004-05-29 12:55:24 +00:00
|
|
|
|
2004-11-25 16:33:53 +00:00
|
|
|
(defun flymake-can-syntax-check-file (file-name)
|
2004-11-25 16:43:32 +00:00
|
|
|
"Determine whether we can syntax check FILE-NAME.
|
2004-11-25 16:33:53 +00:00
|
|
|
Return nil if we cannot, non-nil if we can."
|
2004-11-25 16:43:32 +00:00
|
|
|
(if (flymake-get-init-function file-name) t nil))
|
2004-05-29 12:55:24 +00:00
|
|
|
|
2004-11-25 16:33:53 +00:00
|
|
|
(defun flymake-get-init-function (file-name)
|
2004-11-25 16:43:32 +00:00
|
|
|
"Return init function to be used for the file."
|
|
|
|
(let* ((init-f (nth 0 (flymake-get-file-name-mode-and-masks file-name))))
|
2005-03-24 22:42:42 +00:00
|
|
|
;;(flymake-log 0 "calling %s" init-f)
|
|
|
|
;;(funcall init-f (current-buffer))
|
2004-11-25 16:43:32 +00:00
|
|
|
init-f))
|
2004-05-29 12:55:24 +00:00
|
|
|
|
2004-11-25 16:33:53 +00:00
|
|
|
(defun flymake-get-cleanup-function (file-name)
|
2004-11-25 16:43:32 +00:00
|
|
|
"Return cleanup function to be used for the file."
|
|
|
|
(nth 1 (flymake-get-file-name-mode-and-masks file-name)))
|
2004-05-29 12:55:24 +00:00
|
|
|
|
2004-11-25 16:33:53 +00:00
|
|
|
(defun flymake-get-real-file-name-function (file-name)
|
2004-11-25 16:43:32 +00:00
|
|
|
(or (nth 2 (flymake-get-file-name-mode-and-masks file-name)) 'flymake-get-real-file-name))
|
2004-05-29 12:55:24 +00:00
|
|
|
|
|
|
|
(defcustom flymake-buildfile-dirs '("." ".." "../.." "../../.." "../../../.." "../../../../.." "../../../../../.." "../../../../../../.." "../../../../../../../.." "../../../../../../../../.." "../../../../../../../../../.." "../../../../../../../../../../..")
|
2004-11-25 16:43:32 +00:00
|
|
|
"Dirs to look for buildfile."
|
|
|
|
:group 'flymake
|
|
|
|
:type '(repeat (string)))
|
2004-05-29 12:55:24 +00:00
|
|
|
|
|
|
|
(defvar flymake-find-buildfile-cache (flymake-makehash 'equal))
|
|
|
|
|
2004-11-25 16:33:53 +00:00
|
|
|
(defun flymake-get-buildfile-from-cache (dir-name)
|
2004-11-25 16:43:32 +00:00
|
|
|
(gethash dir-name flymake-find-buildfile-cache))
|
2004-11-25 16:33:53 +00:00
|
|
|
|
|
|
|
(defun flymake-add-buildfile-to-cache (dir-name buildfile)
|
2004-11-25 16:43:32 +00:00
|
|
|
(puthash dir-name buildfile flymake-find-buildfile-cache))
|
2004-11-25 16:33:53 +00:00
|
|
|
|
|
|
|
(defun flymake-clear-buildfile-cache ()
|
2004-11-25 16:43:32 +00:00
|
|
|
(clrhash flymake-find-buildfile-cache))
|
2004-11-25 16:33:53 +00:00
|
|
|
|
|
|
|
(defun flymake-find-buildfile (buildfile-name source-dir-name dirs)
|
2004-11-25 16:43:32 +00:00
|
|
|
"Find buildfile starting from current directory.
|
2004-11-25 16:33:53 +00:00
|
|
|
Buildfile includes Makefile, build.xml etc.
|
2004-11-25 16:43:32 +00:00
|
|
|
Return its file name if found, or nil if not found."
|
|
|
|
(if (flymake-get-buildfile-from-cache source-dir-name)
|
|
|
|
(progn
|
|
|
|
(flymake-get-buildfile-from-cache source-dir-name))
|
|
|
|
(let* ((buildfile-dir nil)
|
|
|
|
(buildfile nil)
|
|
|
|
(found nil))
|
2005-03-25 00:17:42 +00:00
|
|
|
(while (and (not found) dirs)
|
|
|
|
(setq buildfile-dir (concat source-dir-name (car dirs)))
|
2004-11-25 16:43:32 +00:00
|
|
|
(setq buildfile (concat buildfile-dir "/" buildfile-name))
|
|
|
|
(when (file-exists-p buildfile)
|
|
|
|
(setq found t))
|
2005-03-25 00:17:42 +00:00
|
|
|
(setq dirs (cdr dirs)))
|
2004-11-25 16:43:32 +00:00
|
|
|
(if found
|
|
|
|
(progn
|
|
|
|
(flymake-log 3 "found buildfile at %s/%s" buildfile-dir buildfile-name)
|
|
|
|
(flymake-add-buildfile-to-cache source-dir-name buildfile-dir)
|
|
|
|
buildfile-dir)
|
2004-05-29 12:55:24 +00:00
|
|
|
(progn
|
2004-11-25 16:43:32 +00:00
|
|
|
(flymake-log 3 "buildfile for %s not found" source-dir-name)
|
|
|
|
nil)))))
|
|
|
|
|
|
|
|
(defun flymake-fix-file-name (name)
|
|
|
|
"Replace all occurences of '\' with '/'."
|
|
|
|
(when name
|
|
|
|
(let* ((new-name (flymake-replace-regexp-in-string "[\\]" "/" (expand-file-name name)))
|
|
|
|
(last-char (elt new-name (1- (length new-name)))))
|
|
|
|
(setq new-name (flymake-replace-regexp-in-string "\\./" "" new-name))
|
|
|
|
(if (equal "/" (char-to-string last-char))
|
|
|
|
(setq new-name (substring new-name 0 (1- (length new-name)))))
|
|
|
|
new-name)))
|
2004-05-29 12:55:24 +00:00
|
|
|
|
2004-11-25 16:33:53 +00:00
|
|
|
(defun flymake-same-files (file-name-one file-name-two)
|
2004-11-25 16:43:32 +00:00
|
|
|
"Check if FILE-NAME-ONE and FILE-NAME-TWO point to same file.
|
2004-11-25 16:33:53 +00:00
|
|
|
Return t if so, nil if not."
|
2004-11-25 16:43:32 +00:00
|
|
|
(equal (flymake-fix-file-name file-name-one)
|
|
|
|
(flymake-fix-file-name file-name-two)))
|
|
|
|
|
|
|
|
(defun flymake-get-common-file-prefix (string-one string-two)
|
|
|
|
"Return common prefix for two file names STRING-ONE and STRING-TWO."
|
2005-03-25 00:06:07 +00:00
|
|
|
(setq string-one (file-name-as-directory string-one))
|
|
|
|
(setq string-two (file-name-as-directory string-two))
|
|
|
|
(let ((n (compare-strings string-one nil nil string-two nil nil)))
|
|
|
|
(if (eq n t) string-one
|
|
|
|
(setq n (abs (1+ n)))
|
|
|
|
(file-name-directory (substring string-one 0 n)))))
|
2004-11-25 16:43:32 +00:00
|
|
|
|
|
|
|
(defun flymake-build-relative-filename (from-dir to-dir)
|
|
|
|
"Return rel: FROM-DIR/rel == TO-DIR."
|
2005-03-24 22:42:42 +00:00
|
|
|
;; FIXME: Why not use `file-relative-name'?
|
2004-11-25 16:43:32 +00:00
|
|
|
(if (not (equal (elt from-dir 0) (elt to-dir 0)))
|
|
|
|
(error "First chars in file names %s, %s must be equal (same drive)"
|
|
|
|
from-dir to-dir)
|
2005-03-25 00:06:07 +00:00
|
|
|
(let* ((from (file-name-as-directory (flymake-fix-file-name from-dir)))
|
|
|
|
(to (file-name-as-directory (flymake-fix-file-name to-dir)))
|
2004-11-25 16:43:32 +00:00
|
|
|
(prefix (flymake-get-common-file-prefix from to))
|
|
|
|
(from-suffix (substring from (length prefix)))
|
|
|
|
(up-count (length (flymake-split-string from-suffix "[/]")))
|
|
|
|
(to-suffix (substring to (length prefix)))
|
|
|
|
(idx 0)
|
|
|
|
(rel nil))
|
|
|
|
(if (and (> (length to-suffix) 0) (equal "/" (char-to-string (elt to-suffix 0))))
|
|
|
|
(setq to-suffix (substring to-suffix 1)))
|
|
|
|
|
|
|
|
(while (< idx up-count)
|
|
|
|
(if (> (length rel) 0)
|
|
|
|
(setq rel (concat rel "/")))
|
|
|
|
(setq rel (concat rel ".."))
|
|
|
|
(setq idx (1+ idx)))
|
|
|
|
(if (> (length rel) 0)
|
|
|
|
(setq rel (concat rel "/")))
|
|
|
|
(if (> (length to-suffix) 0)
|
|
|
|
(setq rel (concat rel to-suffix)))
|
|
|
|
(or rel "./"))))
|
2004-05-29 12:55:24 +00:00
|
|
|
|
|
|
|
(defcustom flymake-master-file-dirs '("." "./src" "./UnitTest")
|
2005-03-24 22:42:42 +00:00
|
|
|
"Dirs where to look for master files."
|
2004-11-25 16:43:32 +00:00
|
|
|
:group 'flymake
|
|
|
|
:type '(repeat (string)))
|
2004-05-29 12:55:24 +00:00
|
|
|
|
|
|
|
(defcustom flymake-master-file-count-limit 32
|
2004-11-25 16:43:32 +00:00
|
|
|
"Max number of master files to check."
|
|
|
|
:group 'flymake
|
|
|
|
:type 'integer)
|
2004-11-25 16:33:53 +00:00
|
|
|
|
2004-11-26 23:56:39 +00:00
|
|
|
;; This is bound dynamically to pass a parameter to a sort predicate below
|
|
|
|
(defvar flymake-included-file-name)
|
2004-05-29 12:55:24 +00:00
|
|
|
|
2004-11-25 16:33:53 +00:00
|
|
|
(defun flymake-find-possible-master-files (file-name master-file-dirs masks)
|
2005-03-24 22:42:42 +00:00
|
|
|
"Find (by name and location) all possible master files.
|
2005-07-01 14:13:12 +00:00
|
|
|
Master files are .cpp and .c for and .h. Files are searched for
|
2004-11-25 16:33:53 +00:00
|
|
|
starting from the .h directory and max max-level parent dirs.
|
2004-05-29 12:55:24 +00:00
|
|
|
File contents are not checked."
|
2005-03-25 00:17:42 +00:00
|
|
|
(let* ((dirs master-file-dirs)
|
2004-11-25 16:43:32 +00:00
|
|
|
(files nil)
|
2005-03-25 00:17:42 +00:00
|
|
|
(done nil))
|
|
|
|
|
|
|
|
(while (and (not done) dirs)
|
|
|
|
(let* ((dir (concat (flymake-fix-file-name (file-name-directory file-name))
|
|
|
|
"/" (car dirs)))
|
|
|
|
(masks masks))
|
|
|
|
(while (and (file-exists-p dir) (not done) masks)
|
|
|
|
(let* ((mask (car masks))
|
|
|
|
(dir-files (directory-files dir t mask)))
|
|
|
|
|
|
|
|
(flymake-log 3 "dir %s, %d file(s) for mask %s"
|
|
|
|
dir (length dir-files) mask)
|
|
|
|
(while (and (not done) dir-files)
|
|
|
|
(when (not (file-directory-p (car dir-files)))
|
|
|
|
(setq files (cons (car dir-files) files))
|
2004-11-25 16:43:32 +00:00
|
|
|
(when (>= (length files) flymake-master-file-count-limit)
|
|
|
|
(flymake-log 3 "master file count limit (%d) reached" flymake-master-file-count-limit)
|
|
|
|
(setq done t)))
|
2005-03-25 00:17:42 +00:00
|
|
|
(setq dir-files (cdr dir-files))))
|
|
|
|
(setq masks (cdr masks))))
|
|
|
|
(setq dirs (cdr dirs)))
|
2004-11-25 16:43:32 +00:00
|
|
|
(when files
|
2004-11-26 23:56:39 +00:00
|
|
|
(let ((flymake-included-file-name (file-name-nondirectory file-name)))
|
|
|
|
(setq files (sort files 'flymake-master-file-compare))))
|
2004-11-25 16:43:32 +00:00
|
|
|
(flymake-log 3 "found %d possible master file(s)" (length files))
|
|
|
|
files))
|
2004-05-29 12:55:24 +00:00
|
|
|
|
2004-11-25 16:33:53 +00:00
|
|
|
(defun flymake-master-file-compare (file-one file-two)
|
2005-07-01 14:13:12 +00:00
|
|
|
"Compare two files specified by FILE-ONE and FILE-TWO.
|
2004-11-25 16:33:53 +00:00
|
|
|
This function is used in sort to move most possible file names
|
2005-07-01 14:13:12 +00:00
|
|
|
to the beginning of the list (File.h -> File.cpp moved to top)."
|
2004-11-25 16:43:32 +00:00
|
|
|
(and (equal (file-name-sans-extension flymake-included-file-name)
|
|
|
|
(file-name-sans-extension (file-name-nondirectory file-one)))
|
|
|
|
(not (equal file-one file-two))))
|
2004-05-29 12:55:24 +00:00
|
|
|
|
|
|
|
(defcustom flymake-check-file-limit 8192
|
2004-11-25 16:43:32 +00:00
|
|
|
"Max number of chars to look at when checking possible master file."
|
|
|
|
:group 'flymake
|
|
|
|
:type 'integer)
|
2004-05-29 12:55:24 +00:00
|
|
|
|
2004-11-25 16:33:53 +00:00
|
|
|
(defun flymake-check-patch-master-file-buffer (master-file-temp-buffer
|
2004-11-25 16:43:32 +00:00
|
|
|
master-file-name patched-master-file-name
|
|
|
|
source-file-name patched-source-file-name
|
|
|
|
include-dirs regexp-list)
|
|
|
|
"Check if MASTER-FILE-NAME is a master file for SOURCE-FILE-NAME.
|
2004-11-25 16:33:53 +00:00
|
|
|
For .cpp master file this means it includes SOURCE-FILE-NAME (.h).
|
|
|
|
If yes, patch a copy of MASTER-FILE-NAME to include PATCHED-SOURCE-FILE-NAME
|
|
|
|
instead of SOURCE-FILE-NAME.
|
|
|
|
Whether a buffer for MATER-FILE-NAME exists, use it as a source
|
|
|
|
instead of reading master file from disk."
|
2004-11-25 16:43:32 +00:00
|
|
|
(let* ((found nil)
|
|
|
|
(regexp (format (nth 0 regexp-list) ; "[ \t]*#[ \t]*include[ \t]*\"\\([\w0-9/\\_\.]*[/\\]*\\)\\(%s\\)\""
|
|
|
|
(file-name-nondirectory source-file-name)))
|
|
|
|
(path-idx (nth 1 regexp-list))
|
|
|
|
(name-idx (nth 2 regexp-list))
|
|
|
|
(inc-path nil)
|
|
|
|
(inc-name nil)
|
|
|
|
(search-limit flymake-check-file-limit))
|
|
|
|
(save-excursion
|
|
|
|
(unwind-protect
|
|
|
|
(progn
|
|
|
|
(set-buffer master-file-temp-buffer)
|
|
|
|
(when (> search-limit (point-max))
|
|
|
|
(setq search-limit (point-max)))
|
|
|
|
(flymake-log 3 "checking %s against regexp %s" master-file-name regexp)
|
|
|
|
(goto-char (point-min))
|
|
|
|
(while (and (< (point) search-limit) (re-search-forward regexp search-limit t))
|
|
|
|
(let* ((match-beg (match-beginning name-idx))
|
|
|
|
(match-end (match-end name-idx)))
|
|
|
|
|
|
|
|
(flymake-log 3 "found possible match for %s" (file-name-nondirectory source-file-name))
|
|
|
|
(setq inc-path (match-string path-idx))
|
|
|
|
(setq inc-name (match-string name-idx))
|
|
|
|
(when (string= inc-name (file-name-nondirectory source-file-name))
|
|
|
|
(flymake-log 3 "inc-path=%s inc-name=%s" inc-path inc-name)
|
|
|
|
(when (flymake-check-include source-file-name inc-path inc-name include-dirs)
|
|
|
|
(setq found t)
|
|
|
|
;; replace-match is not used here as it fails in
|
2005-03-24 22:42:42 +00:00
|
|
|
;; XEmacs with 'last match not a buffer' error as
|
2004-11-25 16:43:32 +00:00
|
|
|
;; check-includes calls replace-in-string
|
2005-03-25 00:06:07 +00:00
|
|
|
(flymake-replace-region match-beg match-end
|
2004-11-25 16:43:32 +00:00
|
|
|
(file-name-nondirectory patched-source-file-name))))
|
|
|
|
(forward-line 1)))
|
|
|
|
(when found
|
|
|
|
(flymake-save-buffer-in-file (current-buffer) patched-master-file-name)))
|
2005-03-24 22:42:42 +00:00
|
|
|
;;+(flymake-log 3 "killing buffer %s" (buffer-name master-file-temp-buffer))
|
2004-11-25 16:43:32 +00:00
|
|
|
(kill-buffer master-file-temp-buffer)))
|
2005-03-24 22:42:42 +00:00
|
|
|
;;+(flymake-log 3 "check-patch master file %s: %s" master-file-name found)
|
2004-11-25 16:43:32 +00:00
|
|
|
(when found
|
|
|
|
(flymake-log 2 "found master file %s" master-file-name))
|
|
|
|
found))
|
2004-05-29 12:55:24 +00:00
|
|
|
|
2005-03-25 00:06:07 +00:00
|
|
|
(defun flymake-replace-region (beg end rep)
|
2004-11-25 16:43:32 +00:00
|
|
|
"Replace text in BUFFER in region (BEG END) with REP."
|
|
|
|
(save-excursion
|
2005-03-25 00:06:07 +00:00
|
|
|
(goto-char end)
|
|
|
|
;; Insert before deleting, so as to better preserve markers's positions.
|
|
|
|
(insert rep)
|
|
|
|
(delete-region beg end)))
|
2004-05-29 12:55:24 +00:00
|
|
|
|
2004-11-25 16:33:53 +00:00
|
|
|
(defun flymake-read-file-to-temp-buffer (file-name)
|
2004-11-25 16:43:32 +00:00
|
|
|
"Insert contents of FILE-NAME into newly created temp buffer."
|
|
|
|
(let* ((temp-buffer (get-buffer-create (generate-new-buffer-name (concat "flymake:" (file-name-nondirectory file-name))))))
|
2005-03-24 22:55:54 +00:00
|
|
|
(with-current-buffer temp-buffer
|
2004-11-25 16:43:32 +00:00
|
|
|
(insert-file-contents file-name))
|
|
|
|
temp-buffer))
|
2004-05-29 12:55:24 +00:00
|
|
|
|
2004-11-25 16:33:53 +00:00
|
|
|
(defun flymake-copy-buffer-to-temp-buffer (buffer)
|
2004-11-25 16:43:32 +00:00
|
|
|
"Copy contents of BUFFER into newly created temp buffer."
|
|
|
|
(let ((contents nil)
|
|
|
|
(temp-buffer nil))
|
2005-03-24 22:55:54 +00:00
|
|
|
(with-current-buffer buffer
|
2004-11-25 16:43:32 +00:00
|
|
|
(setq contents (buffer-string))
|
|
|
|
|
|
|
|
(setq temp-buffer (get-buffer-create (generate-new-buffer-name (concat "flymake:" (buffer-name buffer)))))
|
|
|
|
(set-buffer temp-buffer)
|
|
|
|
(insert contents))
|
|
|
|
temp-buffer))
|
2004-05-29 12:55:24 +00:00
|
|
|
|
2004-11-25 16:33:53 +00:00
|
|
|
(defun flymake-check-include (source-file-name inc-path inc-name include-dirs)
|
2004-11-25 16:43:32 +00:00
|
|
|
"Check if SOURCE-FILE-NAME can be found in include path.
|
2004-11-25 16:33:53 +00:00
|
|
|
Return t if it can be found via include path using INC-PATH and INC-NAME."
|
2004-11-25 16:43:32 +00:00
|
|
|
(if (file-name-absolute-p inc-path)
|
|
|
|
(flymake-same-files source-file-name (concat inc-path "/" inc-name))
|
2005-03-25 00:17:42 +00:00
|
|
|
(let* ((file-name nil)
|
2004-11-25 16:43:32 +00:00
|
|
|
(found nil))
|
2005-03-25 00:17:42 +00:00
|
|
|
(while (and (not found) include-dirs)
|
|
|
|
(setq file-name (concat (file-name-directory source-file-name)
|
|
|
|
"/" (car include-dirs)))
|
2004-11-25 16:43:32 +00:00
|
|
|
(if (> (length inc-path) 0)
|
|
|
|
(setq file-name (concat file-name "/" inc-path)))
|
|
|
|
(setq file-name (concat file-name "/" inc-name))
|
|
|
|
(when (flymake-same-files source-file-name file-name)
|
|
|
|
(setq found t))
|
2005-03-25 00:17:42 +00:00
|
|
|
(setq include-dirs (cdr include-dirs)))
|
2004-11-25 16:43:32 +00:00
|
|
|
found)))
|
2004-05-29 12:55:24 +00:00
|
|
|
|
2004-11-25 16:33:53 +00:00
|
|
|
(defun flymake-find-buffer-for-file (file-name)
|
2004-11-25 16:43:32 +00:00
|
|
|
"Check if there exists a buffer visiting FILE-NAME.
|
2004-11-25 16:33:53 +00:00
|
|
|
Return t if so, nil if not."
|
2004-11-25 16:43:32 +00:00
|
|
|
(let ((buffer-name (get-file-buffer file-name)))
|
|
|
|
(if buffer-name
|
|
|
|
(get-buffer buffer-name))))
|
2004-05-29 12:55:24 +00:00
|
|
|
|
2004-11-25 16:33:53 +00:00
|
|
|
(defun flymake-create-master-file (source-file-name patched-source-file-name get-incl-dirs-f create-temp-f masks include-regexp-list)
|
2004-11-25 16:43:32 +00:00
|
|
|
"Save SOURCE-FILE-NAME with a different name.
|
2004-11-25 16:33:53 +00:00
|
|
|
Find master file, patch and save it."
|
2004-11-25 16:43:32 +00:00
|
|
|
(let* ((possible-master-files (flymake-find-possible-master-files source-file-name flymake-master-file-dirs masks))
|
|
|
|
(master-file-count (length possible-master-files))
|
|
|
|
(idx 0)
|
|
|
|
(temp-buffer nil)
|
|
|
|
(master-file-name nil)
|
|
|
|
(patched-master-file-name nil)
|
|
|
|
(found nil))
|
|
|
|
|
|
|
|
(while (and (not found) (< idx master-file-count))
|
|
|
|
(setq master-file-name (nth idx possible-master-files))
|
|
|
|
(setq patched-master-file-name (funcall create-temp-f master-file-name "flymake_master"))
|
|
|
|
(if (flymake-find-buffer-for-file master-file-name)
|
|
|
|
(setq temp-buffer (flymake-copy-buffer-to-temp-buffer (flymake-find-buffer-for-file master-file-name)))
|
|
|
|
(setq temp-buffer (flymake-read-file-to-temp-buffer master-file-name)))
|
|
|
|
(setq found
|
|
|
|
(flymake-check-patch-master-file-buffer
|
|
|
|
temp-buffer
|
|
|
|
master-file-name
|
|
|
|
patched-master-file-name
|
|
|
|
source-file-name
|
|
|
|
patched-source-file-name
|
|
|
|
(funcall get-incl-dirs-f (file-name-directory master-file-name))
|
|
|
|
include-regexp-list))
|
|
|
|
(setq idx (1+ idx)))
|
|
|
|
(if found
|
|
|
|
(list master-file-name patched-master-file-name)
|
|
|
|
(progn
|
|
|
|
(flymake-log 3 "none of %d master file(s) checked includes %s" master-file-count
|
|
|
|
(file-name-nondirectory source-file-name))
|
|
|
|
nil))))
|
2004-05-29 12:55:24 +00:00
|
|
|
|
2004-11-25 16:33:53 +00:00
|
|
|
(defun flymake-save-buffer-in-file (buffer file-name)
|
2004-11-25 16:43:32 +00:00
|
|
|
(or buffer
|
|
|
|
(error "Invalid buffer"))
|
2005-03-24 22:55:54 +00:00
|
|
|
(with-current-buffer buffer
|
2004-11-25 16:43:32 +00:00
|
|
|
(save-restriction
|
|
|
|
(widen)
|
|
|
|
(make-directory (file-name-directory file-name) 1)
|
|
|
|
(write-region (point-min) (point-max) file-name nil 566)))
|
|
|
|
(flymake-log 3 "saved buffer %s in file %s" (buffer-name buffer) file-name))
|
2004-05-29 12:55:24 +00:00
|
|
|
|
2004-11-25 16:33:53 +00:00
|
|
|
(defun flymake-save-string-to-file (file-name data)
|
2004-11-25 16:43:32 +00:00
|
|
|
"Save string DATA to file FILE-NAME."
|
|
|
|
(write-region data nil file-name nil 566))
|
2004-05-29 12:55:24 +00:00
|
|
|
|
2004-11-25 16:33:53 +00:00
|
|
|
(defun flymake-read-file-to-string (file-name)
|
2004-11-25 16:43:32 +00:00
|
|
|
"Read contents of file FILE-NAME and return as a string."
|
|
|
|
(with-temp-buffer
|
|
|
|
(insert-file-contents file-name)
|
|
|
|
(buffer-substring (point-min) (point-max))))
|
2004-05-29 12:55:24 +00:00
|
|
|
|
2004-11-25 16:33:53 +00:00
|
|
|
(defun flymake-process-filter (process output)
|
2004-11-25 16:43:32 +00:00
|
|
|
"Parse OUTPUT and highlight error lines.
|
2004-11-25 16:33:53 +00:00
|
|
|
It's flymake process filter."
|
2004-11-25 16:43:32 +00:00
|
|
|
(let* ((pid (process-id process))
|
|
|
|
(source-buffer (get-buffer (flymake-get-source-buffer-name pid))))
|
2004-05-29 12:55:24 +00:00
|
|
|
|
2004-11-25 16:43:32 +00:00
|
|
|
(flymake-log 3 "received %d byte(s) of output from process %d" (length output) pid)
|
|
|
|
(when source-buffer
|
|
|
|
(flymake-parse-output-and-residual source-buffer output))))
|
2004-05-29 12:55:24 +00:00
|
|
|
|
2004-11-25 16:33:53 +00:00
|
|
|
(defun flymake-process-sentinel (process event)
|
2004-11-25 16:43:32 +00:00
|
|
|
"Sentinel for syntax check buffers."
|
|
|
|
(if (memq (process-status process) '(signal exit))
|
|
|
|
(let*((exit-status (process-exit-status process))
|
|
|
|
(command (process-command process))
|
|
|
|
(pid (process-id process))
|
|
|
|
(source-buffer (get-buffer (flymake-get-source-buffer-name pid)))
|
|
|
|
(cleanup-f (flymake-get-cleanup-function (buffer-file-name source-buffer))))
|
|
|
|
|
|
|
|
(flymake-log 2 "process %d exited with code %d" pid exit-status)
|
|
|
|
(condition-case err
|
|
|
|
(progn
|
|
|
|
(flymake-log 3 "cleaning up using %s" cleanup-f)
|
|
|
|
(funcall cleanup-f source-buffer)
|
|
|
|
|
|
|
|
(flymake-unreg-names pid)
|
|
|
|
(delete-process process)
|
|
|
|
|
|
|
|
(when source-buffer
|
2005-03-24 22:55:54 +00:00
|
|
|
(with-current-buffer source-buffer
|
2004-11-25 16:43:32 +00:00
|
|
|
|
|
|
|
(flymake-parse-residual source-buffer)
|
|
|
|
(flymake-post-syntax-check source-buffer exit-status command)
|
2005-04-30 20:13:39 +00:00
|
|
|
(setq flymake-is-running nil))))
|
2004-11-25 16:43:32 +00:00
|
|
|
(error
|
|
|
|
(let ((err-str (format "Error in process sentinel for buffer %s: %s"
|
|
|
|
source-buffer (error-message-string err))))
|
|
|
|
(flymake-log 0 err-str)
|
2005-04-30 20:13:39 +00:00
|
|
|
(with-current-buffer source-buffer
|
|
|
|
(setq flymake-is-running nil))))))))
|
2004-05-29 12:55:24 +00:00
|
|
|
|
2004-11-25 16:33:53 +00:00
|
|
|
(defun flymake-post-syntax-check (source-buffer exit-status command)
|
2005-04-30 20:13:39 +00:00
|
|
|
(with-current-buffer source-buffer
|
|
|
|
(setq flymake-err-info flymake-new-err-info)
|
|
|
|
(setq flymake-new-err-info nil)
|
|
|
|
(setq flymake-err-info
|
|
|
|
(flymake-fix-line-numbers
|
|
|
|
flymake-err-info 1 (flymake-count-lines source-buffer))))
|
2004-11-25 16:43:32 +00:00
|
|
|
(flymake-delete-own-overlays source-buffer)
|
2005-04-30 20:13:39 +00:00
|
|
|
(flymake-highlight-err-lines
|
|
|
|
source-buffer (with-current-buffer source-buffer flymake-err-info))
|
|
|
|
(let (err-count warn-count)
|
|
|
|
(with-current-buffer source-buffer
|
|
|
|
(setq err-count (flymake-get-err-count flymake-err-info "e"))
|
|
|
|
(setq warn-count (flymake-get-err-count flymake-err-info "w"))
|
|
|
|
(flymake-log 2 "%s: %d error(s), %d warning(s) in %.2f second(s)"
|
2004-11-25 16:43:32 +00:00
|
|
|
(buffer-name source-buffer) err-count warn-count
|
2005-04-30 20:13:39 +00:00
|
|
|
(- (flymake-float-time) flymake-check-start-time))
|
|
|
|
(setq flymake-check-start-time nil))
|
|
|
|
|
2004-11-25 16:43:32 +00:00
|
|
|
(if (and (equal 0 err-count) (equal 0 warn-count))
|
|
|
|
(if (equal 0 exit-status)
|
|
|
|
(flymake-report-status source-buffer "" "") ; PASSED
|
2005-04-30 20:13:39 +00:00
|
|
|
(if (not (with-current-buffer source-buffer
|
|
|
|
flymake-check-was-interrupted))
|
2004-11-25 16:43:32 +00:00
|
|
|
(flymake-report-fatal-status (current-buffer) "CFGERR"
|
|
|
|
(format "Configuration error has occured while running %s" command))
|
|
|
|
(flymake-report-status source-buffer nil ""))) ; "STOPPED"
|
|
|
|
(flymake-report-status source-buffer (format "%d/%d" err-count warn-count) ""))))
|
2004-05-29 12:55:24 +00:00
|
|
|
|
2004-11-25 16:33:53 +00:00
|
|
|
(defun flymake-parse-output-and-residual (source-buffer output)
|
2004-11-25 16:43:32 +00:00
|
|
|
"Split OUTPUT into lines, merge in residual if necessary."
|
2005-03-24 22:55:54 +00:00
|
|
|
(with-current-buffer source-buffer
|
2005-04-30 20:13:39 +00:00
|
|
|
(let* ((buffer-residual flymake-output-residual)
|
2004-11-25 16:43:32 +00:00
|
|
|
(total-output (if buffer-residual (concat buffer-residual output) output))
|
|
|
|
(lines-and-residual (flymake-split-output total-output))
|
|
|
|
(lines (nth 0 lines-and-residual))
|
|
|
|
(new-residual (nth 1 lines-and-residual)))
|
2005-04-30 20:13:39 +00:00
|
|
|
(with-current-buffer source-buffer
|
|
|
|
(setq flymake-output-residual new-residual)
|
|
|
|
(setq flymake-new-err-info
|
|
|
|
(flymake-parse-err-lines
|
|
|
|
flymake-new-err-info
|
|
|
|
source-buffer lines))))))
|
2004-05-29 12:55:24 +00:00
|
|
|
|
2004-11-25 16:33:53 +00:00
|
|
|
(defun flymake-parse-residual (source-buffer)
|
2004-11-25 16:43:32 +00:00
|
|
|
"Parse residual if it's non empty."
|
2005-03-24 22:55:54 +00:00
|
|
|
(with-current-buffer source-buffer
|
2005-04-30 20:13:39 +00:00
|
|
|
(when flymake-output-residual
|
|
|
|
(setq flymake-new-err-info
|
|
|
|
(flymake-parse-err-lines
|
|
|
|
flymake-new-err-info
|
|
|
|
source-buffer
|
|
|
|
(list flymake-output-residual)))
|
|
|
|
(setq flymake-output-residual nil))))
|
2004-05-29 12:55:24 +00:00
|
|
|
|
|
|
|
(defvar flymake-err-info nil
|
2004-11-25 16:33:53 +00:00
|
|
|
"Sorted list of line numbers and lists of err info in the form (file, err-text).")
|
|
|
|
|
2004-05-29 12:55:24 +00:00
|
|
|
(make-variable-buffer-local 'flymake-err-info)
|
2004-11-25 16:33:53 +00:00
|
|
|
|
|
|
|
(defun flymake-er-make-er (line-no line-err-info-list)
|
2004-11-25 16:43:32 +00:00
|
|
|
(list line-no line-err-info-list))
|
2004-11-25 16:33:53 +00:00
|
|
|
|
|
|
|
(defun flymake-er-get-line (err-info)
|
2004-11-25 16:43:32 +00:00
|
|
|
(nth 0 err-info))
|
2004-11-25 16:33:53 +00:00
|
|
|
|
|
|
|
(defun flymake-er-get-line-err-info-list (err-info)
|
2004-11-25 16:43:32 +00:00
|
|
|
(nth 1 err-info))
|
2004-05-29 12:55:24 +00:00
|
|
|
|
|
|
|
(defvar flymake-new-err-info nil
|
2005-06-14 11:32:58 +00:00
|
|
|
"Same as `flymake-err-info', effective when a syntax check is in progress.")
|
2004-11-25 16:33:53 +00:00
|
|
|
|
2004-05-29 12:55:24 +00:00
|
|
|
(make-variable-buffer-local 'flymake-new-err-info)
|
2004-11-25 16:33:53 +00:00
|
|
|
|
2004-05-29 12:55:24 +00:00
|
|
|
;; getters/setters for line-err-info: (file, line, type, text).
|
2004-11-25 16:33:53 +00:00
|
|
|
(defun flymake-ler-make-ler (file line type text &optional full-file)
|
2004-11-25 16:43:32 +00:00
|
|
|
(list file line type text full-file))
|
2004-11-25 16:33:53 +00:00
|
|
|
|
|
|
|
(defun flymake-ler-get-file (line-err-info)
|
2004-11-25 16:43:32 +00:00
|
|
|
(nth 0 line-err-info))
|
2004-11-25 16:33:53 +00:00
|
|
|
|
|
|
|
(defun flymake-ler-get-line (line-err-info)
|
2004-11-25 16:43:32 +00:00
|
|
|
(nth 1 line-err-info))
|
2004-11-25 16:33:53 +00:00
|
|
|
|
|
|
|
(defun flymake-ler-get-type (line-err-info)
|
2004-11-25 16:43:32 +00:00
|
|
|
(nth 2 line-err-info))
|
2004-11-25 16:33:53 +00:00
|
|
|
|
|
|
|
(defun flymake-ler-get-text (line-err-info)
|
2004-11-25 16:43:32 +00:00
|
|
|
(nth 3 line-err-info))
|
2004-11-25 16:33:53 +00:00
|
|
|
|
|
|
|
(defun flymake-ler-get-full-file (line-err-info)
|
2004-11-25 16:43:32 +00:00
|
|
|
(nth 4 line-err-info))
|
2004-11-25 16:33:53 +00:00
|
|
|
|
|
|
|
(defun flymake-ler-set-file (line-err-info file)
|
2004-11-25 16:43:32 +00:00
|
|
|
(flymake-ler-make-ler file
|
2004-05-29 12:55:24 +00:00
|
|
|
(flymake-ler-get-line line-err-info)
|
|
|
|
(flymake-ler-get-type line-err-info)
|
|
|
|
(flymake-ler-get-text line-err-info)
|
2004-11-25 16:33:53 +00:00
|
|
|
(flymake-ler-get-full-file line-err-info)))
|
|
|
|
|
|
|
|
(defun flymake-ler-set-full-file (line-err-info full-file)
|
2004-11-25 16:43:32 +00:00
|
|
|
(flymake-ler-make-ler (flymake-ler-get-file line-err-info)
|
2004-05-29 12:55:24 +00:00
|
|
|
(flymake-ler-get-line line-err-info)
|
|
|
|
(flymake-ler-get-type line-err-info)
|
|
|
|
(flymake-ler-get-text line-err-info)
|
2004-11-25 16:33:53 +00:00
|
|
|
full-file))
|
|
|
|
|
|
|
|
(defun flymake-ler-set-line (line-err-info line)
|
2004-11-25 16:43:32 +00:00
|
|
|
(flymake-ler-make-ler (flymake-ler-get-file line-err-info)
|
2004-05-29 12:55:24 +00:00
|
|
|
line
|
|
|
|
(flymake-ler-get-type line-err-info)
|
|
|
|
(flymake-ler-get-text line-err-info)
|
2004-11-25 16:33:53 +00:00
|
|
|
(flymake-ler-get-full-file line-err-info)))
|
2004-05-29 12:55:24 +00:00
|
|
|
|
2004-11-25 16:33:53 +00:00
|
|
|
(defun flymake-get-line-err-count (line-err-info-list type)
|
2004-11-25 16:43:32 +00:00
|
|
|
"Return number of errors of specified TYPE.
|
2005-07-01 14:13:12 +00:00
|
|
|
Value of TYPE is either \"e\" or \"w\"."
|
2004-11-25 16:43:32 +00:00
|
|
|
(let* ((idx 0)
|
|
|
|
(count (length line-err-info-list))
|
|
|
|
(err-count 0))
|
2004-05-29 12:55:24 +00:00
|
|
|
|
2004-11-25 16:43:32 +00:00
|
|
|
(while (< idx count)
|
|
|
|
(when (equal type (flymake-ler-get-type (nth idx line-err-info-list)))
|
|
|
|
(setq err-count (1+ err-count)))
|
|
|
|
(setq idx (1+ idx)))
|
|
|
|
err-count))
|
2004-05-29 12:55:24 +00:00
|
|
|
|
2004-11-25 16:33:53 +00:00
|
|
|
(defun flymake-get-err-count (err-info-list type)
|
2004-11-25 16:43:32 +00:00
|
|
|
"Return number of errors of specified TYPE for ERR-INFO-LIST."
|
|
|
|
(let* ((idx 0)
|
|
|
|
(count (length err-info-list))
|
|
|
|
(err-count 0))
|
|
|
|
(while (< idx count)
|
|
|
|
(setq err-count (+ err-count (flymake-get-line-err-count (nth 1 (nth idx err-info-list)) type)))
|
|
|
|
(setq idx (1+ idx)))
|
|
|
|
err-count))
|
2004-11-25 16:33:53 +00:00
|
|
|
|
|
|
|
(defun flymake-fix-line-numbers (err-info-list min-line max-line)
|
2004-11-25 16:43:32 +00:00
|
|
|
"Replace line numbers with fixed value.
|
2004-11-25 16:33:53 +00:00
|
|
|
If line-numbers is less than MIN-LINE, set line numbers to MIN-LINE.
|
|
|
|
If line numbers is greater than MAX-LINE, set line numbers to MAX-LINE.
|
2004-11-26 23:56:39 +00:00
|
|
|
The reason for this fix is because some compilers might report
|
2004-11-25 16:33:53 +00:00
|
|
|
line number outside the file being compiled."
|
2004-11-25 16:43:32 +00:00
|
|
|
(let* ((count (length err-info-list))
|
|
|
|
(err-info nil)
|
|
|
|
(line 0))
|
|
|
|
(while (> count 0)
|
|
|
|
(setq err-info (nth (1- count) err-info-list))
|
|
|
|
(setq line (flymake-er-get-line err-info))
|
|
|
|
(when (or (< line min-line) (> line max-line))
|
|
|
|
(setq line (if (< line min-line) min-line max-line))
|
|
|
|
(setq err-info-list (flymake-set-at err-info-list (1- count)
|
|
|
|
(flymake-er-make-er line
|
|
|
|
(flymake-er-get-line-err-info-list err-info)))))
|
|
|
|
(setq count (1- count))))
|
|
|
|
err-info-list)
|
2004-05-29 12:55:24 +00:00
|
|
|
|
2004-11-25 16:33:53 +00:00
|
|
|
(defun flymake-highlight-err-lines (buffer err-info-list)
|
2004-11-25 16:43:32 +00:00
|
|
|
"Highlight error lines in BUFFER using info from ERR-INFO-LIST."
|
2005-03-24 22:55:54 +00:00
|
|
|
(with-current-buffer buffer
|
2005-08-26 13:49:07 +00:00
|
|
|
(save-excursion
|
2004-11-25 16:43:32 +00:00
|
|
|
(let* ((idx 0)
|
|
|
|
(count (length err-info-list)))
|
|
|
|
(while (< idx count)
|
2005-08-26 13:49:07 +00:00
|
|
|
(flymake-highlight-line (car (nth idx err-info-list))
|
|
|
|
(nth 1 (nth idx err-info-list)))
|
|
|
|
(setq idx (1+ idx)))))))
|
2004-05-29 12:55:24 +00:00
|
|
|
|
2004-11-25 16:33:53 +00:00
|
|
|
(defun flymake-overlay-p (ov)
|
2004-11-25 16:43:32 +00:00
|
|
|
"Determine whether overlay OV was created by flymake."
|
|
|
|
(and (overlayp ov) (overlay-get ov 'flymake-overlay)))
|
2004-05-29 12:55:24 +00:00
|
|
|
|
2004-11-25 16:33:53 +00:00
|
|
|
(defun flymake-make-overlay (beg end tooltip-text face mouse-face)
|
2004-11-25 16:43:32 +00:00
|
|
|
"Allocate a flymake overlay in range BEG and END."
|
|
|
|
(when (not (flymake-region-has-flymake-overlays beg end))
|
|
|
|
(let ((ov (make-overlay beg end nil t t)))
|
|
|
|
(overlay-put ov 'face face)
|
|
|
|
(overlay-put ov 'mouse-face mouse-face)
|
|
|
|
(overlay-put ov 'help-echo tooltip-text)
|
|
|
|
(overlay-put ov 'flymake-overlay t)
|
|
|
|
(overlay-put ov 'priority 100)
|
2005-03-24 22:42:42 +00:00
|
|
|
;;+(flymake-log 3 "created overlay %s" ov)
|
2004-11-25 16:43:32 +00:00
|
|
|
ov)
|
|
|
|
(flymake-log 3 "created an overlay at (%d-%d)" beg end)))
|
2004-05-29 12:55:24 +00:00
|
|
|
|
2004-11-25 16:33:53 +00:00
|
|
|
(defun flymake-delete-own-overlays (buffer)
|
2004-11-25 16:43:32 +00:00
|
|
|
"Delete all flymake overlays in BUFFER."
|
2005-03-24 22:55:54 +00:00
|
|
|
(with-current-buffer buffer
|
2004-11-25 16:43:32 +00:00
|
|
|
(let ((ov (overlays-in (point-min) (point-max))))
|
|
|
|
(while (consp ov)
|
|
|
|
(when (flymake-overlay-p (car ov))
|
|
|
|
(delete-overlay (car ov))
|
2005-03-24 22:42:42 +00:00
|
|
|
;;+(flymake-log 3 "deleted overlay %s" ov)
|
2004-11-25 16:43:32 +00:00
|
|
|
)
|
|
|
|
(setq ov (cdr ov))))))
|
2004-05-29 12:55:24 +00:00
|
|
|
|
2004-11-25 16:33:53 +00:00
|
|
|
(defun flymake-region-has-flymake-overlays (beg end)
|
2004-11-25 16:43:32 +00:00
|
|
|
"Check if region specified by BEG and END has overlay.
|
2004-11-25 16:33:53 +00:00
|
|
|
Return t if it has at least one flymake overlay, nil if no overlay."
|
2004-11-25 16:43:32 +00:00
|
|
|
(let ((ov (overlays-in beg end))
|
|
|
|
(has-flymake-overlays nil))
|
|
|
|
(while (consp ov)
|
|
|
|
(when (flymake-overlay-p (car ov))
|
|
|
|
(setq has-flymake-overlays t))
|
2005-03-24 22:55:54 +00:00
|
|
|
(setq ov (cdr ov)))
|
|
|
|
has-flymake-overlays))
|
2004-05-29 12:55:24 +00:00
|
|
|
|
2005-06-14 23:20:37 +00:00
|
|
|
(defface flymake-errline
|
2005-03-24 22:42:42 +00:00
|
|
|
;;+ '((((class color)) (:foreground "OrangeRed" :bold t :underline t))
|
|
|
|
;;+ '((((class color)) (:underline "OrangeRed"))
|
2004-11-25 16:43:32 +00:00
|
|
|
'((((class color)) (:background "LightPink"))
|
|
|
|
(t (:bold t)))
|
|
|
|
"Face used for marking error lines."
|
|
|
|
:group 'flymake)
|
2004-05-29 12:55:24 +00:00
|
|
|
|
2005-06-14 23:20:37 +00:00
|
|
|
(defface flymake-warnline
|
2004-11-25 16:43:32 +00:00
|
|
|
'((((class color)) (:background "LightBlue2"))
|
|
|
|
(t (:bold t)))
|
|
|
|
"Face used for marking warning lines."
|
|
|
|
:group 'flymake)
|
2004-05-29 12:55:24 +00:00
|
|
|
|
2004-11-25 16:33:53 +00:00
|
|
|
(defun flymake-highlight-line (line-no line-err-info-list)
|
2004-11-25 16:43:32 +00:00
|
|
|
"Highlight line LINE-NO in current buffer.
|
2005-07-01 14:13:12 +00:00
|
|
|
Perhaps use text from LINE-ERR-INFO-LIST to enhance highlighting."
|
2004-11-25 16:43:32 +00:00
|
|
|
(goto-line line-no)
|
|
|
|
(let* ((line-beg (flymake-line-beginning-position))
|
|
|
|
(line-end (flymake-line-end-position))
|
|
|
|
(beg line-beg)
|
|
|
|
(end line-end)
|
|
|
|
(tooltip-text (flymake-ler-get-text (nth 0 line-err-info-list)))
|
|
|
|
(face nil))
|
|
|
|
|
|
|
|
(goto-char line-beg)
|
|
|
|
(while (looking-at "[ \t]")
|
|
|
|
(forward-char))
|
2004-05-29 12:55:24 +00:00
|
|
|
|
2004-11-25 16:43:32 +00:00
|
|
|
(setq beg (point))
|
2004-05-29 12:55:24 +00:00
|
|
|
|
2004-11-25 16:43:32 +00:00
|
|
|
(goto-char line-end)
|
|
|
|
(while (and (looking-at "[ \t\r\n]") (> (point) 1))
|
|
|
|
(backward-char))
|
2004-05-29 12:55:24 +00:00
|
|
|
|
2004-11-25 16:43:32 +00:00
|
|
|
(setq end (1+ (point)))
|
2004-05-29 12:55:24 +00:00
|
|
|
|
2004-11-25 16:43:32 +00:00
|
|
|
(when (<= end beg)
|
|
|
|
(setq beg line-beg)
|
|
|
|
(setq end line-end))
|
2004-11-25 16:33:53 +00:00
|
|
|
|
2004-11-25 16:43:32 +00:00
|
|
|
(when (= end beg)
|
|
|
|
(goto-char end)
|
|
|
|
(forward-line)
|
|
|
|
(setq end (point)))
|
2004-11-25 16:33:53 +00:00
|
|
|
|
2004-11-25 16:43:32 +00:00
|
|
|
(if (> (flymake-get-line-err-count line-err-info-list "e") 0)
|
2005-06-14 23:20:37 +00:00
|
|
|
(setq face 'flymake-errline)
|
|
|
|
(setq face 'flymake-warnline))
|
2004-11-25 16:33:53 +00:00
|
|
|
|
2004-11-25 16:43:32 +00:00
|
|
|
(flymake-make-overlay beg end tooltip-text face nil)))
|
2004-05-29 12:55:24 +00:00
|
|
|
|
2004-11-25 16:33:53 +00:00
|
|
|
(defun flymake-parse-err-lines (err-info-list source-buffer lines)
|
2004-11-25 16:43:32 +00:00
|
|
|
"Parse err LINES, store info in ERR-INFO-LIST."
|
|
|
|
(let* ((count (length lines))
|
|
|
|
(idx 0)
|
|
|
|
(line-err-info nil)
|
|
|
|
(real-file-name nil)
|
|
|
|
(source-file-name (buffer-file-name source-buffer))
|
|
|
|
(get-real-file-name-f (flymake-get-real-file-name-function source-file-name)))
|
|
|
|
|
|
|
|
(while (< idx count)
|
|
|
|
(setq line-err-info (flymake-parse-line (nth idx lines)))
|
|
|
|
(when line-err-info
|
|
|
|
(setq real-file-name (funcall get-real-file-name-f source-buffer (flymake-ler-get-file line-err-info)))
|
|
|
|
(setq line-err-info (flymake-ler-set-full-file line-err-info real-file-name))
|
|
|
|
|
|
|
|
(if (flymake-same-files real-file-name source-file-name)
|
|
|
|
(setq line-err-info (flymake-ler-set-file line-err-info nil))
|
|
|
|
(setq line-err-info (flymake-ler-set-file line-err-info (file-name-nondirectory real-file-name))))
|
|
|
|
|
|
|
|
(setq err-info-list (flymake-add-err-info err-info-list line-err-info)))
|
|
|
|
(flymake-log 3 "parsed '%s', %s line-err-info" (nth idx lines) (if line-err-info "got" "no"))
|
|
|
|
(setq idx (1+ idx)))
|
|
|
|
err-info-list))
|
2004-05-29 12:55:24 +00:00
|
|
|
|
2004-11-25 16:33:53 +00:00
|
|
|
(defun flymake-split-output (output)
|
2004-11-25 16:43:32 +00:00
|
|
|
"Split OUTPUT into lines.
|
2005-03-24 22:42:42 +00:00
|
|
|
Return last one as residual if it does not end with newline char.
|
|
|
|
Returns ((LINES) RESIDUAL)."
|
2004-11-25 16:43:32 +00:00
|
|
|
(when (and output (> (length output) 0))
|
|
|
|
(let* ((lines (flymake-split-string output "[\n\r]+"))
|
|
|
|
(complete (equal "\n" (char-to-string (aref output (1- (length output))))))
|
|
|
|
(residual nil))
|
|
|
|
(when (not complete)
|
|
|
|
(setq residual (car (last lines)))
|
|
|
|
(setq lines (butlast lines)))
|
|
|
|
(list lines residual))))
|
2004-05-29 12:55:24 +00:00
|
|
|
|
2004-11-25 16:33:53 +00:00
|
|
|
(defun flymake-reformat-err-line-patterns-from-compile-el (original-list)
|
2004-11-25 16:43:32 +00:00
|
|
|
"Grab error line patterns from ORIGINAL-LIST in compile.el format.
|
2004-11-25 16:33:53 +00:00
|
|
|
Convert it to flymake internal format."
|
2004-11-25 16:43:32 +00:00
|
|
|
(let* ((converted-list '()))
|
2005-03-24 22:55:54 +00:00
|
|
|
(dolist (item original-list)
|
|
|
|
(setq item (cdr item))
|
|
|
|
(let ((regexp (nth 0 item))
|
|
|
|
(file (nth 1 item))
|
|
|
|
(line (nth 2 item))
|
|
|
|
(col (nth 3 item)))
|
|
|
|
(if (consp file) (setq file (car file)))
|
|
|
|
(if (consp line) (setq line (car line)))
|
|
|
|
(if (consp col) (setq col (car col)))
|
2005-04-04 09:22:59 +00:00
|
|
|
|
2005-03-24 22:55:54 +00:00
|
|
|
(when (not (functionp line))
|
|
|
|
(setq converted-list (cons (list regexp file line col) converted-list)))))
|
2004-11-25 16:43:32 +00:00
|
|
|
converted-list))
|
2004-11-25 16:33:53 +00:00
|
|
|
|
2005-09-09 01:24:15 +00:00
|
|
|
(require 'compile)
|
2004-11-25 16:43:32 +00:00
|
|
|
|
|
|
|
(defvar flymake-err-line-patterns ; regexp file-idx line-idx col-idx (optional) text-idx(optional), match-end to end of string is error text
|
|
|
|
(append
|
|
|
|
'(
|
2005-03-24 22:42:42 +00:00
|
|
|
;; MS Visual C++ 6.0
|
2004-11-25 16:43:32 +00:00
|
|
|
("\\(\\([a-zA-Z]:\\)?[^:(\t\n]+\\)(\\([0-9]+\\)) \: \\(\\(error\\|warning\\|fatal error\\) \\(C[0-9]+\\):[ \t\n]*\\(.+\\)\\)"
|
|
|
|
1 3 nil 4)
|
2005-03-24 22:42:42 +00:00
|
|
|
;; jikes
|
2004-11-25 16:43:32 +00:00
|
|
|
("\\(\\([a-zA-Z]:\\)?[^:(\t\n]+\\)\:\\([0-9]+\\)\:[0-9]+\:[0-9]+\:[0-9]+\: \\(\\(Error\\|Warning\\|Caution\\|Semantic Error\\):[ \t\n]*\\(.+\\)\\)"
|
|
|
|
1 3 nil 4)
|
2005-03-24 22:42:42 +00:00
|
|
|
;; MS midl
|
2004-11-25 16:43:32 +00:00
|
|
|
("midl[ ]*:[ ]*\\(command line error .*\\)"
|
|
|
|
nil nil nil 1)
|
2005-03-24 22:42:42 +00:00
|
|
|
;; MS C#
|
2004-11-25 16:43:32 +00:00
|
|
|
("\\(\\([a-zA-Z]:\\)?[^:(\t\n]+\\)(\\([0-9]+\\),[0-9]+)\: \\(\\(error\\|warning\\|fatal error\\) \\(CS[0-9]+\\):[ \t\n]*\\(.+\\)\\)"
|
|
|
|
1 3 nil 4)
|
2005-03-24 22:42:42 +00:00
|
|
|
;; perl
|
2004-11-25 16:43:32 +00:00
|
|
|
("\\(.*\\) at \\([^ \n]+\\) line \\([0-9]+\\)[,.\n]" 2 3 nil 1)
|
2005-03-24 22:42:42 +00:00
|
|
|
;; LaTeX warnings (fileless) ("\\(LaTeX \\(Warning\\|Error\\): .*\\) on input line \\([0-9]+\\)" 20 3 nil 1)
|
|
|
|
;; ant/javac
|
2004-11-25 16:43:32 +00:00
|
|
|
(" *\\(\\[javac\\]\\)? *\\(\\([a-zA-Z]:\\)?[^:(\t\n]+\\)\:\\([0-9]+\\)\:[ \t\n]*\\(.+\\)"
|
|
|
|
2 4 nil 5))
|
|
|
|
;; compilation-error-regexp-alist)
|
2004-11-26 23:56:39 +00:00
|
|
|
(flymake-reformat-err-line-patterns-from-compile-el compilation-error-regexp-alist-alist))
|
2005-03-24 22:42:42 +00:00
|
|
|
"Patterns for matching error/warning lines.
|
|
|
|
\(REGEXP FILE-IDX LINE-IDX ERR-TEXT-IDX).
|
|
|
|
Use `flymake-reformat-err-line-patterns-from-compile-el' to add patterns
|
|
|
|
from compile.el")
|
|
|
|
|
|
|
|
;;(defcustom flymake-err-line-patterns
|
|
|
|
;; '(
|
|
|
|
;; ; MS Visual C++ 6.0
|
|
|
|
;; ("\\(\\([a-zA-Z]:\\)?[^:(\t\n]+\\)(\\([0-9]+\\)) \: \\(\\(error\\|warning\\|fatal error\\) \\(C[0-9]+\\):[ \t\n]*\\(.+\\)\\)"
|
|
|
|
;; 1 3 4)
|
|
|
|
;; ; jikes
|
|
|
|
;; ("\\(\\([a-zA-Z]:\\)?[^:(\t\n]+\\)\:\\([0-9]+\\)\:[0-9]+\:[0-9]+\:[0-9]+\: \\(\\(Error\\|Warning\\|Caution\\):[ \t\n]*\\(.+\\)\\)"
|
|
|
|
;; 1 3 4))
|
|
|
|
;; "patterns for matching error/warning lines, (regexp file-idx line-idx err-text-idx)"
|
|
|
|
;; :group 'flymake
|
|
|
|
;; :type '(repeat (string number number number))
|
|
|
|
;;)
|
2004-05-29 12:55:24 +00:00
|
|
|
|
2004-11-25 16:33:53 +00:00
|
|
|
(defun flymake-parse-line (line)
|
2005-07-01 14:13:12 +00:00
|
|
|
"Parse LINE to see if it is an error or warning.
|
|
|
|
Return its components if so, nil otherwise."
|
2004-11-25 16:43:32 +00:00
|
|
|
(let ((raw-file-name nil)
|
|
|
|
(line-no 0)
|
|
|
|
(err-type "e")
|
|
|
|
(err-text nil)
|
2005-03-25 00:17:42 +00:00
|
|
|
(patterns flymake-err-line-patterns)
|
2004-11-25 16:43:32 +00:00
|
|
|
(matched nil))
|
2005-03-25 00:17:42 +00:00
|
|
|
(while (and patterns (not matched))
|
|
|
|
(when (string-match (car (car patterns)) line)
|
|
|
|
(let* ((file-idx (nth 1 (car patterns)))
|
|
|
|
(line-idx (nth 2 (car patterns))))
|
2004-11-25 16:43:32 +00:00
|
|
|
|
|
|
|
(setq raw-file-name (if file-idx (match-string file-idx line) nil))
|
2005-05-16 11:34:49 +00:00
|
|
|
(setq line-no (if line-idx (string-to-number (match-string line-idx line)) 0))
|
2005-03-25 00:17:42 +00:00
|
|
|
(setq err-text (if (> (length (car patterns)) 4)
|
|
|
|
(match-string (nth 4 (car patterns)) line)
|
2004-11-25 16:43:32 +00:00
|
|
|
(flymake-patch-err-text (substring line (match-end 0)))))
|
|
|
|
(or err-text (setq err-text "<no error text>"))
|
|
|
|
(if (and err-text (string-match "^[wW]arning" err-text))
|
|
|
|
(setq err-type "w")
|
|
|
|
)
|
|
|
|
(flymake-log 3 "parse line: file-idx=%s line-idx=%s file=%s line=%s text=%s" file-idx line-idx
|
|
|
|
raw-file-name line-no err-text)
|
|
|
|
(setq matched t)))
|
2005-03-25 00:17:42 +00:00
|
|
|
(setq patterns (cdr patterns)))
|
2004-11-25 16:43:32 +00:00
|
|
|
(if matched
|
|
|
|
(flymake-ler-make-ler raw-file-name line-no err-type err-text)
|
|
|
|
())))
|
2004-05-29 12:55:24 +00:00
|
|
|
|
2004-11-25 16:33:53 +00:00
|
|
|
(defun flymake-find-err-info (err-info-list line-no)
|
2004-11-25 16:43:32 +00:00
|
|
|
"Find (line-err-info-list pos) for specified LINE-NO."
|
|
|
|
(if err-info-list
|
|
|
|
(let* ((line-err-info-list nil)
|
|
|
|
(pos 0)
|
|
|
|
(count (length err-info-list)))
|
|
|
|
|
|
|
|
(while (and (< pos count) (< (car (nth pos err-info-list)) line-no))
|
|
|
|
(setq pos (1+ pos)))
|
|
|
|
(when (and (< pos count) (equal (car (nth pos err-info-list)) line-no))
|
|
|
|
(setq line-err-info-list (flymake-er-get-line-err-info-list (nth pos err-info-list))))
|
|
|
|
(list line-err-info-list pos))
|
|
|
|
'(nil 0)))
|
2004-05-29 12:55:24 +00:00
|
|
|
|
2004-11-25 16:33:53 +00:00
|
|
|
(defun flymake-line-err-info-is-less-or-equal (line-one line-two)
|
2004-11-25 16:43:32 +00:00
|
|
|
(or (string< (flymake-ler-get-type line-one) (flymake-ler-get-type line-two))
|
|
|
|
(and (string= (flymake-ler-get-type line-one) (flymake-ler-get-type line-two))
|
|
|
|
(not (flymake-ler-get-file line-one)) (flymake-ler-get-file line-two))
|
|
|
|
(and (string= (flymake-ler-get-type line-one) (flymake-ler-get-type line-two))
|
|
|
|
(or (and (flymake-ler-get-file line-one) (flymake-ler-get-file line-two))
|
|
|
|
(and (not (flymake-ler-get-file line-one)) (not (flymake-ler-get-file line-two)))))))
|
2004-05-29 12:55:24 +00:00
|
|
|
|
2004-11-25 16:33:53 +00:00
|
|
|
(defun flymake-add-line-err-info (line-err-info-list line-err-info)
|
2005-04-30 20:13:39 +00:00
|
|
|
"Update LINE-ERR-INFO-LIST with the error LINE-ERR-INFO.
|
|
|
|
For the format of LINE-ERR-INFO, see `flymake-ler-make-ler'.
|
|
|
|
The new element is inserted in the proper position, according to
|
|
|
|
the predicate `flymake-line-err-info-is-less-or-equal'.
|
|
|
|
The updated value of LINE-ERR-INFO-LIST is returned."
|
2004-11-25 16:43:32 +00:00
|
|
|
(if (not line-err-info-list)
|
|
|
|
(list line-err-info)
|
|
|
|
(let* ((count (length line-err-info-list))
|
|
|
|
(idx 0))
|
|
|
|
(while (and (< idx count) (flymake-line-err-info-is-less-or-equal (nth idx line-err-info-list) line-err-info))
|
|
|
|
(setq idx (1+ idx)))
|
|
|
|
(cond ((equal 0 idx) (setq line-err-info-list (cons line-err-info line-err-info-list)))
|
|
|
|
(t (setq line-err-info-list (flymake-ins-after line-err-info-list (1- idx) line-err-info))))
|
|
|
|
line-err-info-list)))
|
2004-05-29 12:55:24 +00:00
|
|
|
|
2004-11-25 16:33:53 +00:00
|
|
|
(defun flymake-add-err-info (err-info-list line-err-info)
|
2005-04-30 20:13:39 +00:00
|
|
|
"Update ERR-INFO-LIST with the error LINE-ERR-INFO, preserving sort order.
|
|
|
|
Returns the updated value of ERR-INFO-LIST.
|
|
|
|
For the format of ERR-INFO-LIST, see `flymake-err-info'.
|
|
|
|
For the format of LINE-ERR-INFO, see `flymake-ler-make-ler'."
|
2005-03-25 00:06:07 +00:00
|
|
|
(let* ((line-no (if (flymake-ler-get-file line-err-info) 1 (flymake-ler-get-line line-err-info)))
|
2004-11-25 16:43:32 +00:00
|
|
|
(info-and-pos (flymake-find-err-info err-info-list line-no))
|
|
|
|
(exists (car info-and-pos))
|
|
|
|
(pos (nth 1 info-and-pos))
|
|
|
|
(line-err-info-list nil)
|
|
|
|
(err-info nil))
|
|
|
|
|
|
|
|
(if exists
|
|
|
|
(setq line-err-info-list (flymake-er-get-line-err-info-list (car (nthcdr pos err-info-list)))))
|
|
|
|
(setq line-err-info-list (flymake-add-line-err-info line-err-info-list line-err-info))
|
|
|
|
|
|
|
|
(setq err-info (flymake-er-make-er line-no line-err-info-list))
|
|
|
|
(cond (exists (setq err-info-list (flymake-set-at err-info-list pos err-info)))
|
|
|
|
((equal 0 pos) (setq err-info-list (cons err-info err-info-list)))
|
|
|
|
(t (setq err-info-list (flymake-ins-after err-info-list (1- pos) err-info))))
|
|
|
|
err-info-list))
|
2004-05-29 12:55:24 +00:00
|
|
|
|
2004-11-25 16:33:53 +00:00
|
|
|
(defun flymake-get-project-include-dirs-imp (basedir)
|
2004-11-25 16:43:32 +00:00
|
|
|
"Include dirs for the project current file belongs to."
|
|
|
|
(if (flymake-get-project-include-dirs-from-cache basedir)
|
|
|
|
(progn
|
|
|
|
(flymake-get-project-include-dirs-from-cache basedir))
|
2005-03-24 22:42:42 +00:00
|
|
|
;;else
|
2004-11-25 16:43:32 +00:00
|
|
|
(let* ((command-line (concat "make -C\"" basedir "\" DUMPVARS=INCLUDE_DIRS dumpvars"))
|
|
|
|
(output (shell-command-to-string command-line))
|
|
|
|
(lines (flymake-split-string output "\n"))
|
|
|
|
(count (length lines))
|
|
|
|
(idx 0)
|
|
|
|
(inc-dirs nil))
|
|
|
|
(while (and (< idx count) (not (string-match "^INCLUDE_DIRS=.*" (nth idx lines))))
|
|
|
|
(setq idx (1+ idx)))
|
|
|
|
(when (< idx count)
|
|
|
|
(let* ((inc-lines (flymake-split-string (nth idx lines) " *-I"))
|
|
|
|
(inc-count (length inc-lines)))
|
|
|
|
(while (> inc-count 0)
|
|
|
|
(when (not (string-match "^INCLUDE_DIRS=.*" (nth (1- inc-count) inc-lines)))
|
|
|
|
(setq inc-dirs (cons (flymake-replace-regexp-in-string "\"" "" (nth (1- inc-count) inc-lines)) inc-dirs)))
|
|
|
|
(setq inc-count (1- inc-count)))))
|
|
|
|
(flymake-add-project-include-dirs-to-cache basedir inc-dirs)
|
|
|
|
inc-dirs)))
|
2004-05-29 12:55:24 +00:00
|
|
|
|
|
|
|
(defcustom flymake-get-project-include-dirs-function 'flymake-get-project-include-dirs-imp
|
2005-07-01 14:13:12 +00:00
|
|
|
"Function used to get project include dirs, one parameter: basedir name."
|
2004-11-25 16:43:32 +00:00
|
|
|
:group 'flymake
|
|
|
|
:type 'function)
|
2004-05-29 12:55:24 +00:00
|
|
|
|
2004-11-25 16:33:53 +00:00
|
|
|
(defun flymake-get-project-include-dirs (basedir)
|
2004-11-25 16:43:32 +00:00
|
|
|
(funcall flymake-get-project-include-dirs-function basedir))
|
2004-05-29 12:55:24 +00:00
|
|
|
|
2004-11-25 16:33:53 +00:00
|
|
|
(defun flymake-get-system-include-dirs ()
|
2004-11-25 16:43:32 +00:00
|
|
|
"System include dirs - from the 'INCLUDE' env setting."
|
|
|
|
(let* ((includes (getenv "INCLUDE")))
|
|
|
|
(if includes (flymake-split-string includes path-separator) nil)))
|
2004-05-29 12:55:24 +00:00
|
|
|
|
|
|
|
(defvar flymake-project-include-dirs-cache (flymake-makehash 'equal))
|
|
|
|
|
2004-11-25 16:33:53 +00:00
|
|
|
(defun flymake-get-project-include-dirs-from-cache (base-dir)
|
2004-11-25 16:43:32 +00:00
|
|
|
(gethash base-dir flymake-project-include-dirs-cache))
|
2004-11-25 16:33:53 +00:00
|
|
|
|
|
|
|
(defun flymake-add-project-include-dirs-to-cache (base-dir include-dirs)
|
2004-11-25 16:43:32 +00:00
|
|
|
(puthash base-dir include-dirs flymake-project-include-dirs-cache))
|
2004-11-25 16:33:53 +00:00
|
|
|
|
|
|
|
(defun flymake-clear-project-include-dirs-cache ()
|
2004-11-25 16:43:32 +00:00
|
|
|
(clrhash flymake-project-include-dirs-cache))
|
2004-11-25 16:33:53 +00:00
|
|
|
|
|
|
|
(defun flymake-get-include-dirs (base-dir)
|
2004-11-25 16:43:32 +00:00
|
|
|
"Get dirs to use when resolving local file names."
|
|
|
|
(let* ((include-dirs (append '(".") (flymake-get-project-include-dirs base-dir) (flymake-get-system-include-dirs))))
|
|
|
|
include-dirs))
|
2004-05-29 12:55:24 +00:00
|
|
|
|
2004-11-25 16:33:53 +00:00
|
|
|
(defun flymake-restore-formatting (source-buffer)
|
2004-11-25 16:43:32 +00:00
|
|
|
"Remove any formatting made by flymake."
|
|
|
|
)
|
2004-05-29 12:55:24 +00:00
|
|
|
|
2004-11-25 16:33:53 +00:00
|
|
|
(defun flymake-get-program-dir (buffer)
|
2004-11-25 16:43:32 +00:00
|
|
|
"Get dir to start program in."
|
|
|
|
(unless (bufferp buffer)
|
2005-03-24 22:55:54 +00:00
|
|
|
(error "Invalid buffer"))
|
|
|
|
(with-current-buffer buffer
|
2004-11-25 16:43:32 +00:00
|
|
|
default-directory))
|
2004-05-29 12:55:24 +00:00
|
|
|
|
2004-11-25 16:33:53 +00:00
|
|
|
(defun flymake-safe-delete-file (file-name)
|
2004-11-25 16:43:32 +00:00
|
|
|
(when (and file-name (file-exists-p file-name))
|
|
|
|
(delete-file file-name)
|
|
|
|
(flymake-log 1 "deleted file %s" file-name)))
|
2004-05-29 12:55:24 +00:00
|
|
|
|
2004-11-25 16:33:53 +00:00
|
|
|
(defun flymake-safe-delete-directory (dir-name)
|
2004-11-25 16:43:32 +00:00
|
|
|
(condition-case err
|
|
|
|
(progn
|
|
|
|
(delete-directory dir-name)
|
|
|
|
(flymake-log 1 "deleted dir %s" dir-name))
|
|
|
|
(error
|
|
|
|
(flymake-log 1 "Failed to delete dir %s, error ignored" dir-name))))
|
2004-05-29 12:55:24 +00:00
|
|
|
|
2004-11-26 23:56:39 +00:00
|
|
|
(defcustom flymake-compilation-prevents-syntax-check t
|
2004-11-25 16:43:32 +00:00
|
|
|
"If non-nil, syntax check won't be started in case compilation is running."
|
|
|
|
:group 'flymake
|
|
|
|
:type 'boolean)
|
2004-05-29 12:55:24 +00:00
|
|
|
|
2004-11-25 16:33:53 +00:00
|
|
|
(defun flymake-start-syntax-check (buffer)
|
2004-11-25 16:43:32 +00:00
|
|
|
"Start syntax checking for buffer BUFFER."
|
|
|
|
(unless (bufferp buffer)
|
|
|
|
(error "Expected a buffer"))
|
2005-03-24 22:55:54 +00:00
|
|
|
(with-current-buffer buffer
|
2005-04-30 20:13:39 +00:00
|
|
|
(flymake-log 3 "flymake is running: %s" flymake-is-running)
|
|
|
|
(when (and (not flymake-is-running)
|
2004-11-25 16:43:32 +00:00
|
|
|
(flymake-can-syntax-check-file (buffer-file-name buffer)))
|
|
|
|
(when (or (not flymake-compilation-prevents-syntax-check)
|
|
|
|
(not (flymake-compilation-is-running))) ;+ (flymake-rep-ort-status buffer "COMP")
|
|
|
|
(flymake-clear-buildfile-cache)
|
|
|
|
(flymake-clear-project-include-dirs-cache)
|
|
|
|
|
2005-04-30 20:13:39 +00:00
|
|
|
(setq flymake-check-was-interrupted nil)
|
|
|
|
(setq flymake-buffer-data (flymake-makehash 'equal))
|
2004-11-25 16:43:32 +00:00
|
|
|
|
|
|
|
(let* ((source-file-name (buffer-file-name buffer))
|
|
|
|
(init-f (flymake-get-init-function source-file-name))
|
|
|
|
(cleanup-f (flymake-get-cleanup-function source-file-name))
|
|
|
|
(cmd-and-args (funcall init-f buffer))
|
|
|
|
(cmd (nth 0 cmd-and-args))
|
|
|
|
(args (nth 1 cmd-and-args))
|
|
|
|
(dir (nth 2 cmd-and-args)))
|
|
|
|
(if (not cmd-and-args)
|
|
|
|
(progn
|
|
|
|
(flymake-log 0 "init function %s for %s failed, cleaning up" init-f source-file-name)
|
|
|
|
(funcall cleanup-f buffer))
|
|
|
|
(progn
|
2005-04-30 20:13:39 +00:00
|
|
|
(setq flymake-last-change-time nil)
|
2004-11-25 16:43:32 +00:00
|
|
|
(flymake-start-syntax-check-process buffer cmd args dir))))))))
|
2004-05-29 12:55:24 +00:00
|
|
|
|
2004-11-25 16:33:53 +00:00
|
|
|
(defun flymake-start-syntax-check-process (buffer cmd args dir)
|
2004-11-25 16:43:32 +00:00
|
|
|
"Start syntax check process."
|
|
|
|
(let* ((process nil))
|
|
|
|
(condition-case err
|
|
|
|
(progn
|
|
|
|
(when dir
|
|
|
|
(let ((default-directory dir))
|
|
|
|
(flymake-log 3 "starting process on dir %s" default-directory)))
|
|
|
|
(setq process (get-process (apply 'start-process "flymake-proc" nil cmd args)))
|
|
|
|
(set-process-sentinel process 'flymake-process-sentinel)
|
|
|
|
(set-process-filter process 'flymake-process-filter)
|
|
|
|
|
|
|
|
(flymake-reg-names (process-id process) (buffer-name buffer))
|
|
|
|
|
2005-04-30 20:13:39 +00:00
|
|
|
(with-current-buffer buffer
|
|
|
|
(setq flymake-is-running t)
|
|
|
|
(setq flymake-last-change-time nil)
|
|
|
|
(setq flymake-check-start-time (flymake-float-time)))
|
2004-11-25 16:43:32 +00:00
|
|
|
|
|
|
|
(flymake-report-status buffer nil "*")
|
|
|
|
(flymake-log 2 "started process %d, command=%s, dir=%s"
|
|
|
|
(process-id process) (process-command process) default-directory)
|
|
|
|
process)
|
|
|
|
(error
|
|
|
|
(let* ((err-str (format "Failed to launch syntax check process '%s' with args %s: %s"
|
|
|
|
cmd args (error-message-string err)))
|
|
|
|
(source-file-name (buffer-file-name buffer))
|
|
|
|
(cleanup-f (flymake-get-cleanup-function source-file-name)))
|
|
|
|
(flymake-log 0 err-str)
|
|
|
|
(funcall cleanup-f buffer)
|
|
|
|
(flymake-report-fatal-status buffer "PROCERR" err-str))))))
|
2004-05-29 12:55:24 +00:00
|
|
|
|
2004-11-25 16:33:53 +00:00
|
|
|
(defun flymake-kill-process (pid &optional rest)
|
2004-11-25 16:43:32 +00:00
|
|
|
"Kill process PID."
|
|
|
|
(signal-process pid 9)
|
|
|
|
(let* ((buffer-name (flymake-get-source-buffer-name pid)))
|
|
|
|
(when (and buffer-name (get-buffer buffer-name))
|
2005-04-30 20:13:39 +00:00
|
|
|
(with-current-buffer (get-buffer buffer-name)
|
|
|
|
(setq flymake-check-was-interrupted t))))
|
2004-11-25 16:43:32 +00:00
|
|
|
(flymake-log 1 "killed process %d" pid))
|
2004-05-29 12:55:24 +00:00
|
|
|
|
2004-11-25 16:33:53 +00:00
|
|
|
(defun flymake-stop-all-syntax-checks ()
|
2004-11-25 16:43:32 +00:00
|
|
|
"Kill all syntax check processes."
|
|
|
|
(interactive)
|
|
|
|
(let ((pids (copy-hash-table flymake-pid-to-names)))
|
|
|
|
(maphash 'flymake-kill-process pids)))
|
2004-05-29 12:55:24 +00:00
|
|
|
|
2004-11-25 16:33:53 +00:00
|
|
|
(defun flymake-compilation-is-running ()
|
2004-11-25 16:43:32 +00:00
|
|
|
(and (boundp 'compilation-in-progress)
|
|
|
|
compilation-in-progress))
|
2004-05-29 12:55:24 +00:00
|
|
|
|
2004-11-25 16:33:53 +00:00
|
|
|
(defun flymake-compile ()
|
2004-11-25 16:43:32 +00:00
|
|
|
"Kill all flymake syntax checks, start compilation."
|
|
|
|
(interactive)
|
|
|
|
(flymake-stop-all-syntax-checks)
|
|
|
|
(call-interactively 'compile))
|
2004-05-29 12:55:24 +00:00
|
|
|
|
|
|
|
(defvar flymake-is-running nil
|
2005-03-24 22:42:42 +00:00
|
|
|
"If t, flymake syntax check process is running for the current buffer.")
|
2004-11-25 16:33:53 +00:00
|
|
|
|
2004-05-29 12:55:24 +00:00
|
|
|
(make-variable-buffer-local 'flymake-is-running)
|
2004-11-25 16:33:53 +00:00
|
|
|
|
2004-05-29 12:55:24 +00:00
|
|
|
(defvar flymake-timer nil
|
2004-11-25 16:33:53 +00:00
|
|
|
"Timer for starting syntax check.")
|
|
|
|
|
2004-05-29 12:55:24 +00:00
|
|
|
(make-variable-buffer-local 'flymake-timer)
|
2004-11-25 16:33:53 +00:00
|
|
|
|
2004-05-29 12:55:24 +00:00
|
|
|
(defvar flymake-last-change-time nil
|
2004-11-25 16:33:53 +00:00
|
|
|
"Time of last buffer change.")
|
|
|
|
|
2004-05-29 12:55:24 +00:00
|
|
|
(make-variable-buffer-local 'flymake-last-change-time)
|
2004-11-25 16:33:53 +00:00
|
|
|
|
2004-05-29 12:55:24 +00:00
|
|
|
(defvar flymake-check-start-time nil
|
2004-11-25 16:33:53 +00:00
|
|
|
"Time at which syntax check was started.")
|
|
|
|
|
2004-05-29 12:55:24 +00:00
|
|
|
(make-variable-buffer-local 'flymake-check-start-time)
|
2004-11-25 16:33:53 +00:00
|
|
|
|
2004-05-29 12:55:24 +00:00
|
|
|
(defvar flymake-check-was-interrupted nil
|
2005-03-24 22:42:42 +00:00
|
|
|
"Non-nil if syntax check was killed by `flymake-compile'.")
|
2004-11-25 16:33:53 +00:00
|
|
|
|
2004-05-29 12:55:24 +00:00
|
|
|
(make-variable-buffer-local 'flymake-check-was-interrupted)
|
2004-11-25 16:33:53 +00:00
|
|
|
|
2004-05-29 12:55:24 +00:00
|
|
|
(defcustom flymake-no-changes-timeout 0.5
|
2004-11-25 16:43:32 +00:00
|
|
|
"Time to wait after last change before starting compilation."
|
|
|
|
:group 'flymake
|
|
|
|
:type 'number)
|
2004-05-29 12:55:24 +00:00
|
|
|
|
2004-11-25 16:33:53 +00:00
|
|
|
(defun flymake-on-timer-event (buffer)
|
2004-11-25 16:43:32 +00:00
|
|
|
"Start a syntax check for buffer BUFFER if necessary."
|
2005-04-30 20:13:39 +00:00
|
|
|
(when (bufferp buffer)
|
2005-03-24 22:55:54 +00:00
|
|
|
(with-current-buffer buffer
|
2005-04-30 20:13:39 +00:00
|
|
|
(when (and (not flymake-is-running)
|
|
|
|
flymake-last-change-time
|
|
|
|
(> (flymake-float-time) (+ flymake-no-changes-timeout flymake-last-change-time)))
|
|
|
|
|
|
|
|
(setq flymake-last-change-time nil)
|
2004-11-25 16:43:32 +00:00
|
|
|
(flymake-log 3 "starting syntax check as more than 1 second passed since last change")
|
|
|
|
(flymake-start-syntax-check buffer)))))
|
2004-05-29 12:55:24 +00:00
|
|
|
|
2004-11-25 16:33:53 +00:00
|
|
|
(defun flymake-start-syntax-check-for-current-buffer ()
|
2005-06-14 11:32:58 +00:00
|
|
|
"Run `flymake-start-syntax-check' for current buffer if it isn't already running."
|
2004-11-25 16:43:32 +00:00
|
|
|
(interactive)
|
|
|
|
(flymake-start-syntax-check (current-buffer)))
|
2004-05-29 12:55:24 +00:00
|
|
|
|
2004-11-25 16:33:53 +00:00
|
|
|
(defun flymake-current-line-no ()
|
2004-11-25 16:43:32 +00:00
|
|
|
"Return number of current line in current buffer."
|
|
|
|
(interactive)
|
|
|
|
(let ((beg (point-min))
|
|
|
|
(end (if (= (point) (point-max)) (point) (1+ (point)))))
|
|
|
|
(count-lines beg end)))
|
2004-05-29 12:55:24 +00:00
|
|
|
|
2004-11-25 16:33:53 +00:00
|
|
|
(defun flymake-count-lines (buffer)
|
2004-11-25 16:43:32 +00:00
|
|
|
"Return number of lines in buffer BUFFER."
|
2005-03-24 22:55:54 +00:00
|
|
|
(with-current-buffer buffer
|
2004-11-25 16:43:32 +00:00
|
|
|
(count-lines (point-min) (point-max))))
|
2004-05-29 12:55:24 +00:00
|
|
|
|
2004-11-25 16:33:53 +00:00
|
|
|
(defun flymake-get-point-pixel-pos ()
|
2004-11-25 16:43:32 +00:00
|
|
|
"Return point position in pixels: (x, y)."
|
|
|
|
(let ((mouse-pos (mouse-position))
|
|
|
|
(pixel-pos nil)
|
|
|
|
(ret nil))
|
|
|
|
(if (car (cdr mouse-pos))
|
|
|
|
(progn
|
|
|
|
(set-mouse-position (flymake-selected-frame) (current-column) (flymake-current-row))
|
|
|
|
(setq pixel-pos (mouse-pixel-position))
|
|
|
|
(set-mouse-position (car mouse-pos) (car (cdr mouse-pos)) (cdr (cdr mouse-pos)))
|
|
|
|
(setq ret (list (car (cdr pixel-pos)) (cdr (cdr pixel-pos)))))
|
|
|
|
(progn
|
|
|
|
(setq ret '(0 0))))
|
|
|
|
(flymake-log 3 "mouse pos is %s" ret)
|
|
|
|
ret))
|
2004-05-29 12:55:24 +00:00
|
|
|
|
2004-11-25 16:33:53 +00:00
|
|
|
(defun flymake-display-err-menu-for-current-line ()
|
2004-11-25 16:43:32 +00:00
|
|
|
"Display a menu with errors/warnings for current line if it has errors and/or warnings."
|
|
|
|
(interactive)
|
|
|
|
(let* ((line-no (flymake-current-line-no))
|
2005-04-30 20:13:39 +00:00
|
|
|
(line-err-info-list (nth 0 (flymake-find-err-info flymake-err-info line-no)))
|
2004-11-25 16:43:32 +00:00
|
|
|
(menu-data (flymake-make-err-menu-data line-no line-err-info-list))
|
|
|
|
(choice nil)
|
|
|
|
(mouse-pos (flymake-get-point-pixel-pos))
|
|
|
|
(menu-pos (list (flymake-get-point-pixel-pos) (selected-window))))
|
|
|
|
(if menu-data
|
|
|
|
(progn
|
|
|
|
(setq choice (flymake-popup-menu menu-pos menu-data))
|
|
|
|
(flymake-log 3 "choice=%s" choice)
|
|
|
|
(when choice
|
|
|
|
(eval choice)))
|
|
|
|
(flymake-log 1 "no errors for line %d" line-no))))
|
2004-05-29 12:55:24 +00:00
|
|
|
|
2004-11-25 16:33:53 +00:00
|
|
|
(defun flymake-make-err-menu-data (line-no line-err-info-list)
|
2005-07-01 14:13:12 +00:00
|
|
|
"Make a (menu-title (item-title item-action)*) list with errors/warnings from LINE-ERR-INFO-LIST."
|
2004-11-25 16:43:32 +00:00
|
|
|
(let* ((menu-items nil))
|
|
|
|
(when line-err-info-list
|
|
|
|
(let* ((count (length line-err-info-list))
|
|
|
|
(menu-item-text nil))
|
|
|
|
(while (> count 0)
|
|
|
|
(setq menu-item-text (flymake-ler-get-text (nth (1- count) line-err-info-list)))
|
|
|
|
(let* ((file (flymake-ler-get-file (nth (1- count) line-err-info-list)))
|
|
|
|
(full-file (flymake-ler-get-full-file (nth (1- count) line-err-info-list)))
|
|
|
|
(line (flymake-ler-get-line (nth (1- count) line-err-info-list))))
|
|
|
|
(if file
|
|
|
|
(setq menu-item-text (concat menu-item-text " - " file "(" (format "%d" line) ")")))
|
|
|
|
(setq menu-items (cons (list menu-item-text
|
|
|
|
(if file (list 'flymake-goto-file-and-line full-file line) nil))
|
|
|
|
menu-items)))
|
|
|
|
(setq count (1- count)))
|
|
|
|
(flymake-log 3 "created menu-items with %d item(s)" (length menu-items))))
|
|
|
|
(if menu-items
|
|
|
|
(let* ((menu-title (format "Line %d: %d error(s), %d warning(s)" line-no
|
|
|
|
(flymake-get-line-err-count line-err-info-list "e")
|
|
|
|
(flymake-get-line-err-count line-err-info-list "w"))))
|
|
|
|
(list menu-title menu-items))
|
|
|
|
nil)))
|
2004-05-29 12:55:24 +00:00
|
|
|
|
2004-11-25 16:33:53 +00:00
|
|
|
(defun flymake-goto-file-and-line (file line)
|
2005-03-24 22:42:42 +00:00
|
|
|
"Try to get buffer for FILE and goto line LINE in it."
|
2004-11-25 16:43:32 +00:00
|
|
|
(if (not (file-exists-p file))
|
|
|
|
(flymake-log 1 "file %s does not exists" file)
|
|
|
|
(progn
|
|
|
|
(find-file file)
|
|
|
|
(goto-line line))))
|
2004-05-29 12:55:24 +00:00
|
|
|
|
2004-11-25 16:33:53 +00:00
|
|
|
;; flymake minor mode declarations
|
2005-03-25 00:06:07 +00:00
|
|
|
(defvar flymake-mode-line nil)
|
2004-11-25 16:33:53 +00:00
|
|
|
|
2004-05-29 12:55:24 +00:00
|
|
|
(make-variable-buffer-local 'flymake-mode-line)
|
2004-11-25 16:33:53 +00:00
|
|
|
|
2004-05-29 12:55:24 +00:00
|
|
|
(defvar flymake-mode-line-e-w nil)
|
2004-11-25 16:33:53 +00:00
|
|
|
|
2004-05-29 12:55:24 +00:00
|
|
|
(make-variable-buffer-local 'flymake-mode-line-e-w)
|
2004-11-25 16:33:53 +00:00
|
|
|
|
2004-05-29 12:55:24 +00:00
|
|
|
(defvar flymake-mode-line-status nil)
|
2004-11-25 16:33:53 +00:00
|
|
|
|
2004-05-29 12:55:24 +00:00
|
|
|
(make-variable-buffer-local 'flymake-mode-line-status)
|
|
|
|
|
2004-11-25 16:33:53 +00:00
|
|
|
(defun flymake-report-status (buffer e-w &optional status)
|
2004-11-25 16:43:32 +00:00
|
|
|
"Show status in mode line."
|
|
|
|
(when (bufferp buffer)
|
2005-03-24 22:55:54 +00:00
|
|
|
(with-current-buffer buffer
|
2004-11-25 16:43:32 +00:00
|
|
|
(when e-w
|
2005-04-30 20:13:39 +00:00
|
|
|
(setq flymake-mode-line-e-w e-w))
|
2004-11-25 16:43:32 +00:00
|
|
|
(when status
|
2005-04-30 20:13:39 +00:00
|
|
|
(setq flymake-mode-line-status status))
|
2004-11-25 16:43:32 +00:00
|
|
|
(let* ((mode-line " Flymake"))
|
2005-04-30 20:13:39 +00:00
|
|
|
(when (> (length flymake-mode-line-e-w) 0)
|
|
|
|
(setq mode-line (concat mode-line ":" flymake-mode-line-e-w)))
|
|
|
|
(setq mode-line (concat mode-line flymake-mode-line-status))
|
|
|
|
(setq flymake-mode-line mode-line)
|
2004-11-25 16:43:32 +00:00
|
|
|
(force-mode-line-update)))))
|
2004-05-29 12:55:24 +00:00
|
|
|
|
2004-11-25 16:33:53 +00:00
|
|
|
(defun flymake-display-warning (warning)
|
2004-11-25 16:43:32 +00:00
|
|
|
"Display a warning to user."
|
|
|
|
(message-box warning))
|
2004-05-29 12:55:24 +00:00
|
|
|
|
|
|
|
(defcustom flymake-gui-warnings-enabled t
|
2005-07-01 14:13:12 +00:00
|
|
|
"Enables/disables GUI warnings."
|
2004-11-25 16:43:32 +00:00
|
|
|
:group 'flymake
|
|
|
|
:type 'boolean)
|
2004-05-29 12:55:24 +00:00
|
|
|
|
2004-11-25 16:33:53 +00:00
|
|
|
(defun flymake-report-fatal-status (buffer status warning)
|
2004-11-25 16:43:32 +00:00
|
|
|
"Display a warning and switch flymake mode off."
|
|
|
|
(when flymake-gui-warnings-enabled
|
|
|
|
(flymake-display-warning (format "Flymake: %s. Flymake will be switched OFF" warning))
|
|
|
|
)
|
2005-03-24 22:55:54 +00:00
|
|
|
(with-current-buffer buffer
|
2004-11-25 16:43:32 +00:00
|
|
|
(flymake-mode 0)
|
|
|
|
(flymake-log 0 "switched OFF Flymake mode for buffer %s due to fatal status %s, warning %s"
|
|
|
|
(buffer-name buffer) status warning)))
|
2004-05-29 12:55:24 +00:00
|
|
|
|
2005-07-02 19:36:38 +00:00
|
|
|
(defcustom flymake-start-syntax-check-on-find-file t
|
|
|
|
"Start syntax check on find file."
|
|
|
|
:group 'flymake
|
|
|
|
:type 'boolean)
|
|
|
|
|
2005-03-26 15:33:33 +00:00
|
|
|
;;;###autoload
|
2005-03-25 00:06:07 +00:00
|
|
|
(define-minor-mode flymake-mode
|
|
|
|
"Minor mode to do on-the-fly syntax checking.
|
|
|
|
When called interactively, toggles the minor mode.
|
|
|
|
With arg, turn Flymake mode on if and only if arg is positive."
|
2005-04-04 09:22:59 +00:00
|
|
|
:group 'flymake :lighter flymake-mode-line
|
2005-07-02 19:36:38 +00:00
|
|
|
(cond
|
|
|
|
|
|
|
|
;; Turning the mode ON.
|
|
|
|
(flymake-mode
|
|
|
|
(if (not (flymake-can-syntax-check-file buffer-file-name))
|
|
|
|
(flymake-log 2 "flymake cannot check syntax in buffer %s" (buffer-name))
|
|
|
|
(add-hook 'after-change-functions 'flymake-after-change-function nil t)
|
|
|
|
(add-hook 'after-save-hook 'flymake-after-save-hook nil t)
|
|
|
|
(add-hook 'kill-buffer-hook 'flymake-kill-buffer-hook nil t)
|
|
|
|
;;+(add-hook 'find-file-hook 'flymake-find-file-hook)
|
|
|
|
|
|
|
|
(flymake-report-status (current-buffer) "" "")
|
2005-07-03 23:18:19 +00:00
|
|
|
|
2005-07-02 19:36:38 +00:00
|
|
|
(setq flymake-timer
|
|
|
|
(run-at-time nil 1 'flymake-on-timer-event (current-buffer)))
|
|
|
|
|
|
|
|
(when flymake-start-syntax-check-on-find-file
|
|
|
|
(flymake-start-syntax-check-for-current-buffer))))
|
|
|
|
|
|
|
|
;; Turning the mode OFF.
|
|
|
|
(t
|
|
|
|
(remove-hook 'after-change-functions 'flymake-after-change-function t)
|
|
|
|
(remove-hook 'after-save-hook 'flymake-after-save-hook t)
|
|
|
|
(remove-hook 'kill-buffer-hook 'flymake-kill-buffer-hook t)
|
|
|
|
;;+(remove-hook 'find-file-hook (function flymake-find-file-hook) t)
|
2004-11-25 16:33:53 +00:00
|
|
|
|
2005-07-02 19:36:38 +00:00
|
|
|
(flymake-delete-own-overlays (current-buffer))
|
|
|
|
|
|
|
|
(when flymake-timer
|
|
|
|
(cancel-timer flymake-timer)
|
|
|
|
(setq flymake-timer nil))
|
|
|
|
|
2005-07-02 21:17:05 +00:00
|
|
|
(setq flymake-is-running nil))))
|
2004-05-29 12:55:24 +00:00
|
|
|
|
|
|
|
;;;###autoload
|
2004-11-25 16:33:53 +00:00
|
|
|
(defun flymake-mode-on ()
|
2004-11-25 16:43:32 +00:00
|
|
|
"Turn flymake mode on."
|
2005-07-02 19:36:38 +00:00
|
|
|
(flymake-mode 1)
|
|
|
|
(flymake-log 1 "flymake mode turned ON for buffer %s" (buffer-name)))
|
2004-05-29 12:55:24 +00:00
|
|
|
|
|
|
|
;;;###autoload
|
2004-11-25 16:33:53 +00:00
|
|
|
(defun flymake-mode-off ()
|
2004-11-25 16:43:32 +00:00
|
|
|
"Turn flymake mode off."
|
2005-07-02 19:36:38 +00:00
|
|
|
(flymake-mode 0)
|
2005-07-02 21:17:05 +00:00
|
|
|
(flymake-log 1 "flymake mode turned OFF for buffer %s" (buffer-name)))
|
2004-05-29 12:55:24 +00:00
|
|
|
|
|
|
|
(defcustom flymake-start-syntax-check-on-newline t
|
2004-11-25 16:43:32 +00:00
|
|
|
"Start syntax check if newline char was added/removed from the buffer."
|
|
|
|
:group 'flymake
|
|
|
|
:type 'boolean)
|
2004-05-29 12:55:24 +00:00
|
|
|
|
2004-11-25 16:33:53 +00:00
|
|
|
(defun flymake-after-change-function (start stop len)
|
2005-03-24 22:42:42 +00:00
|
|
|
"Start syntax check for current buffer if it isn't already running."
|
|
|
|
;;+(flymake-log 0 "setting change time to %s" (flymake-float-time))
|
2004-11-25 16:43:32 +00:00
|
|
|
(let((new-text (buffer-substring start stop)))
|
|
|
|
(when (and flymake-start-syntax-check-on-newline (equal new-text "\n"))
|
|
|
|
(flymake-log 3 "starting syntax check as new-line has been seen")
|
|
|
|
(flymake-start-syntax-check-for-current-buffer))
|
2005-04-30 20:13:39 +00:00
|
|
|
(setq flymake-last-change-time (flymake-float-time))))
|
2004-05-29 12:55:24 +00:00
|
|
|
|
2004-11-25 16:33:53 +00:00
|
|
|
(defun flymake-after-save-hook ()
|
2004-11-25 16:43:32 +00:00
|
|
|
(if (local-variable-p 'flymake-mode (current-buffer)) ; (???) other way to determine whether flymake is active in buffer being saved?
|
|
|
|
(progn
|
|
|
|
(flymake-log 3 "starting syntax check as buffer was saved")
|
|
|
|
(flymake-start-syntax-check-for-current-buffer)))) ; no more mode 3. cannot start check if mode 3 (to temp copies) is active - (???)
|
2004-05-29 12:55:24 +00:00
|
|
|
|
2004-11-25 16:33:53 +00:00
|
|
|
(defun flymake-kill-buffer-hook ()
|
2005-04-30 20:13:39 +00:00
|
|
|
(when flymake-timer
|
|
|
|
(cancel-timer flymake-timer)
|
|
|
|
(setq flymake-timer nil)))
|
2004-05-29 12:55:24 +00:00
|
|
|
|
2004-11-25 16:33:53 +00:00
|
|
|
(defun flymake-find-file-hook ()
|
2005-03-24 22:42:42 +00:00
|
|
|
;;+(when flymake-start-syntax-check-on-find-file
|
|
|
|
;;+ (flymake-log 3 "starting syntax check on file open")
|
|
|
|
;;+ (flymake-start-syntax-check-for-current-buffer)
|
|
|
|
;;+)
|
2004-11-25 16:43:32 +00:00
|
|
|
(when (and (not (local-variable-p 'flymake-mode (current-buffer)))
|
2005-07-02 19:36:38 +00:00
|
|
|
(flymake-can-syntax-check-file buffer-file-name))
|
2004-11-25 16:43:32 +00:00
|
|
|
(flymake-mode)
|
|
|
|
(flymake-log 3 "automatically turned ON flymake mode")))
|
2004-05-29 12:55:24 +00:00
|
|
|
|
2004-11-25 16:33:53 +00:00
|
|
|
(defun flymake-get-first-err-line-no (err-info-list)
|
2004-11-25 16:43:32 +00:00
|
|
|
"Return first line with error."
|
|
|
|
(when err-info-list
|
|
|
|
(flymake-er-get-line (car err-info-list))))
|
2004-05-29 12:55:24 +00:00
|
|
|
|
2004-11-25 16:33:53 +00:00
|
|
|
(defun flymake-get-last-err-line-no (err-info-list)
|
2004-11-25 16:43:32 +00:00
|
|
|
"Return last line with error."
|
|
|
|
(when err-info-list
|
|
|
|
(flymake-er-get-line (nth (1- (length err-info-list)) err-info-list))))
|
2004-05-29 12:55:24 +00:00
|
|
|
|
2004-11-25 16:33:53 +00:00
|
|
|
(defun flymake-get-next-err-line-no (err-info-list line-no)
|
2004-11-25 16:43:32 +00:00
|
|
|
"Return next line with error."
|
|
|
|
(when err-info-list
|
|
|
|
(let* ((count (length err-info-list))
|
|
|
|
(idx 0))
|
|
|
|
(while (and (< idx count) (>= line-no (flymake-er-get-line (nth idx err-info-list))))
|
|
|
|
(setq idx (1+ idx)))
|
|
|
|
(if (< idx count)
|
|
|
|
(flymake-er-get-line (nth idx err-info-list))))))
|
2004-05-29 12:55:24 +00:00
|
|
|
|
2004-11-25 16:33:53 +00:00
|
|
|
(defun flymake-get-prev-err-line-no (err-info-list line-no)
|
2005-07-01 14:13:12 +00:00
|
|
|
"Return previous line with error."
|
2004-11-25 16:43:32 +00:00
|
|
|
(when err-info-list
|
|
|
|
(let* ((count (length err-info-list)))
|
|
|
|
(while (and (> count 0) (<= line-no (flymake-er-get-line (nth (1- count) err-info-list))))
|
|
|
|
(setq count (1- count)))
|
|
|
|
(if (> count 0)
|
|
|
|
(flymake-er-get-line (nth (1- count) err-info-list))))))
|
2004-05-29 12:55:24 +00:00
|
|
|
|
2004-11-25 16:33:53 +00:00
|
|
|
(defun flymake-skip-whitespace ()
|
2004-11-25 16:43:32 +00:00
|
|
|
"Move forward until non-whitespace is reached."
|
|
|
|
(while (looking-at "[ \t]")
|
|
|
|
(forward-char)))
|
2004-05-29 12:55:24 +00:00
|
|
|
|
2004-11-25 16:33:53 +00:00
|
|
|
(defun flymake-goto-line (line-no)
|
2005-03-24 22:42:42 +00:00
|
|
|
"Go to line LINE-NO, then skip whitespace."
|
2004-11-25 16:43:32 +00:00
|
|
|
(goto-line line-no)
|
|
|
|
(flymake-skip-whitespace))
|
2004-05-29 12:55:24 +00:00
|
|
|
|
2004-11-25 16:33:53 +00:00
|
|
|
(defun flymake-goto-next-error ()
|
2005-03-24 22:42:42 +00:00
|
|
|
"Go to next error in err ring."
|
2004-11-25 16:43:32 +00:00
|
|
|
(interactive)
|
2005-04-30 20:13:39 +00:00
|
|
|
(let ((line-no (flymake-get-next-err-line-no flymake-err-info (flymake-current-line-no))))
|
2004-11-25 16:43:32 +00:00
|
|
|
(when (not line-no)
|
2005-04-30 20:13:39 +00:00
|
|
|
(setq line-no (flymake-get-first-err-line-no flymake-err-info))
|
2004-11-25 16:43:32 +00:00
|
|
|
(flymake-log 1 "passed end of file"))
|
|
|
|
(if line-no
|
|
|
|
(flymake-goto-line line-no)
|
|
|
|
(flymake-log 1 "no errors in current buffer"))))
|
2004-05-29 12:55:24 +00:00
|
|
|
|
2004-11-25 16:33:53 +00:00
|
|
|
(defun flymake-goto-prev-error ()
|
2005-07-01 14:13:12 +00:00
|
|
|
"Go to previous error in err ring."
|
2004-11-25 16:43:32 +00:00
|
|
|
(interactive)
|
2005-04-30 20:13:39 +00:00
|
|
|
(let ((line-no (flymake-get-prev-err-line-no flymake-err-info (flymake-current-line-no))))
|
2004-11-25 16:43:32 +00:00
|
|
|
(when (not line-no)
|
2005-04-30 20:13:39 +00:00
|
|
|
(setq line-no (flymake-get-last-err-line-no flymake-err-info))
|
2004-11-25 16:43:32 +00:00
|
|
|
(flymake-log 1 "passed beginning of file"))
|
|
|
|
(if line-no
|
|
|
|
(flymake-goto-line line-no)
|
|
|
|
(flymake-log 1 "no errors in current buffer"))))
|
2004-05-29 12:55:24 +00:00
|
|
|
|
2004-11-25 16:33:53 +00:00
|
|
|
(defun flymake-patch-err-text (string)
|
2004-11-25 16:43:32 +00:00
|
|
|
(if (string-match "^[\n\t :0-9]*\\(.*\\)$" string)
|
|
|
|
(match-string 1 string)
|
|
|
|
string))
|
2004-05-29 12:55:24 +00:00
|
|
|
|
|
|
|
;;;; general init-cleanup and helper routines
|
2004-11-25 16:33:53 +00:00
|
|
|
(defun flymake-create-temp-inplace (file-name prefix)
|
2004-11-25 16:43:32 +00:00
|
|
|
(unless (stringp file-name)
|
|
|
|
(error "Invalid file-name"))
|
|
|
|
(or prefix
|
|
|
|
(setq prefix "flymake"))
|
|
|
|
(let* ((temp-name (concat (file-name-sans-extension file-name)
|
|
|
|
"_" prefix
|
|
|
|
(and (file-name-extension file-name)
|
|
|
|
(concat "." (file-name-extension file-name))))))
|
|
|
|
(flymake-log 3 "create-temp-inplace: file=%s temp=%s" file-name temp-name)
|
|
|
|
temp-name))
|
2004-05-29 12:55:24 +00:00
|
|
|
|
2004-11-25 16:33:53 +00:00
|
|
|
(defun flymake-create-temp-with-folder-structure (file-name prefix)
|
2004-11-25 16:43:32 +00:00
|
|
|
(unless (stringp file-name)
|
|
|
|
(error "Invalid file-name"))
|
2004-05-29 12:55:24 +00:00
|
|
|
|
2004-11-25 16:43:32 +00:00
|
|
|
(let* ((dir (file-name-directory file-name))
|
|
|
|
(slash-pos (string-match "/" dir))
|
2005-03-25 00:06:07 +00:00
|
|
|
(temp-dir (concat (file-name-as-directory (flymake-get-temp-dir)) (substring dir (1+ slash-pos)))))
|
2004-05-29 12:55:24 +00:00
|
|
|
|
2005-03-25 00:06:07 +00:00
|
|
|
(file-truename (concat (file-name-as-directory temp-dir)
|
2004-11-25 16:43:32 +00:00
|
|
|
(file-name-nondirectory file-name)))))
|
2004-05-29 12:55:24 +00:00
|
|
|
|
2004-11-25 16:33:53 +00:00
|
|
|
(defun flymake-strrchr (str ch)
|
2004-11-25 16:43:32 +00:00
|
|
|
(let* ((count (length str))
|
|
|
|
(pos nil))
|
|
|
|
(while (and (not pos) (> count 0))
|
|
|
|
(if (= ch (elt str (1- count)))
|
|
|
|
(setq pos (1- count)))
|
|
|
|
(setq count (1- count)))
|
|
|
|
pos))
|
2004-05-29 12:55:24 +00:00
|
|
|
|
2004-11-25 16:33:53 +00:00
|
|
|
(defun flymake-delete-temp-directory (dir-name)
|
2005-03-24 22:42:42 +00:00
|
|
|
"Attempt to delete temp dir created by `flymake-create-temp-with-folder-structure', do not fail on error."
|
2004-11-25 16:43:32 +00:00
|
|
|
(let* ((temp-dir (flymake-get-temp-dir))
|
|
|
|
(suffix (substring dir-name (1+ (length temp-dir))))
|
|
|
|
(slash-pos nil))
|
|
|
|
|
|
|
|
(while (> (length suffix) 0)
|
2005-03-24 22:42:42 +00:00
|
|
|
;;+(flymake-log 0 "suffix=%s" suffix)
|
2005-03-25 00:06:07 +00:00
|
|
|
(flymake-safe-delete-directory (file-truename (concat (file-name-as-directory temp-dir) suffix)))
|
2004-11-25 16:43:32 +00:00
|
|
|
(setq slash-pos (flymake-strrchr suffix (string-to-char "/")))
|
|
|
|
(if slash-pos
|
|
|
|
(setq suffix (substring suffix 0 slash-pos))
|
|
|
|
(setq suffix "")))))
|
2004-05-29 12:55:24 +00:00
|
|
|
|
2004-11-25 16:33:53 +00:00
|
|
|
(defun flymake-init-create-temp-buffer-copy (buffer create-temp-f)
|
2004-11-25 16:43:32 +00:00
|
|
|
"Make a temporary copy of the current buffer, save its name in buffer data and return the name."
|
|
|
|
(let* ((source-file-name (buffer-file-name buffer))
|
|
|
|
(temp-source-file-name (funcall create-temp-f source-file-name "flymake")))
|
2004-05-29 12:55:24 +00:00
|
|
|
|
2004-11-25 16:43:32 +00:00
|
|
|
(flymake-save-buffer-in-file buffer temp-source-file-name)
|
|
|
|
(flymake-set-buffer-value buffer "temp-source-file-name" temp-source-file-name)
|
|
|
|
temp-source-file-name))
|
2004-05-29 12:55:24 +00:00
|
|
|
|
2004-11-25 16:33:53 +00:00
|
|
|
(defun flymake-simple-cleanup (buffer)
|
2005-06-14 11:32:58 +00:00
|
|
|
"Do cleanup after `flymake-init-create-temp-buffer-copy'.
|
2004-11-25 16:33:53 +00:00
|
|
|
Delete temp file."
|
2004-11-25 16:43:32 +00:00
|
|
|
(let* ((temp-source-file-name (flymake-get-buffer-value buffer "temp-source-file-name")))
|
|
|
|
(flymake-safe-delete-file temp-source-file-name)
|
2005-04-30 20:13:39 +00:00
|
|
|
(with-current-buffer buffer
|
|
|
|
(setq flymake-last-change-time nil))))
|
2004-05-29 12:55:24 +00:00
|
|
|
|
2004-11-25 16:33:53 +00:00
|
|
|
(defun flymake-get-real-file-name (buffer file-name-from-err-msg)
|
2005-03-24 22:42:42 +00:00
|
|
|
"Translate file name from error message to \"real\" file name.
|
|
|
|
Return full-name. Names are real, not patched."
|
2004-11-25 16:43:32 +00:00
|
|
|
(let* ((real-name nil)
|
|
|
|
(source-file-name (buffer-file-name buffer))
|
|
|
|
(master-file-name (flymake-get-buffer-value buffer "master-file-name"))
|
|
|
|
(temp-source-file-name (flymake-get-buffer-value buffer "temp-source-file-name"))
|
|
|
|
(temp-master-file-name (flymake-get-buffer-value buffer "temp-master-file-name"))
|
|
|
|
(base-dirs (list (flymake-get-buffer-value buffer "base-dir")
|
|
|
|
(file-name-directory source-file-name)
|
|
|
|
(if master-file-name (file-name-directory master-file-name) nil)))
|
|
|
|
(files (list (list source-file-name source-file-name)
|
|
|
|
(list temp-source-file-name source-file-name)
|
|
|
|
(list master-file-name master-file-name)
|
|
|
|
(list temp-master-file-name master-file-name))))
|
|
|
|
|
|
|
|
(when (equal 0 (length file-name-from-err-msg))
|
|
|
|
(setq file-name-from-err-msg source-file-name))
|
|
|
|
|
|
|
|
(setq real-name (flymake-get-full-patched-file-name file-name-from-err-msg base-dirs files))
|
2005-03-24 22:42:42 +00:00
|
|
|
;; if real-name is nil, than file name from err msg is none of the files we've patched
|
2004-11-25 16:43:32 +00:00
|
|
|
(if (not real-name)
|
|
|
|
(setq real-name (flymake-get-full-nonpatched-file-name file-name-from-err-msg base-dirs)))
|
|
|
|
(if (not real-name)
|
|
|
|
(setq real-name file-name-from-err-msg))
|
|
|
|
(setq real-name (flymake-fix-file-name real-name))
|
|
|
|
(flymake-log 3 "get-real-file-name: file-name=%s real-name=%s" file-name-from-err-msg real-name)
|
|
|
|
real-name))
|
2004-05-29 12:55:24 +00:00
|
|
|
|
2004-11-25 16:33:53 +00:00
|
|
|
(defun flymake-get-full-patched-file-name (file-name-from-err-msg base-dirs files)
|
2004-11-25 16:43:32 +00:00
|
|
|
(let* ((base-dirs-count (length base-dirs))
|
|
|
|
(file-count (length files))
|
|
|
|
(real-name nil))
|
|
|
|
|
|
|
|
(while (and (not real-name) (> base-dirs-count 0))
|
|
|
|
(setq file-count (length files))
|
|
|
|
(while (and (not real-name) (> file-count 0))
|
|
|
|
(let* ((this-dir (nth (1- base-dirs-count) base-dirs))
|
|
|
|
(this-file (nth 0 (nth (1- file-count) files)))
|
|
|
|
(this-real-name (nth 1 (nth (1- file-count) files))))
|
2005-03-24 22:42:42 +00:00
|
|
|
;;+(flymake-log 0 "this-dir=%s this-file=%s this-real=%s msg-file=%s" this-dir this-file this-real-name file-name-from-err-msg)
|
2004-11-25 16:43:32 +00:00
|
|
|
(when (and this-dir this-file (flymake-same-files
|
2005-04-19 18:19:43 +00:00
|
|
|
(expand-file-name file-name-from-err-msg this-dir)
|
2004-11-25 16:43:32 +00:00
|
|
|
this-file))
|
|
|
|
(setq real-name this-real-name)))
|
|
|
|
(setq file-count (1- file-count)))
|
|
|
|
(setq base-dirs-count (1- base-dirs-count)))
|
|
|
|
real-name))
|
2004-05-29 12:55:24 +00:00
|
|
|
|
2004-11-25 16:33:53 +00:00
|
|
|
(defun flymake-get-full-nonpatched-file-name (file-name-from-err-msg base-dirs)
|
2004-11-25 16:43:32 +00:00
|
|
|
(let* ((real-name nil))
|
|
|
|
(if (file-name-absolute-p file-name-from-err-msg)
|
|
|
|
(setq real-name file-name-from-err-msg)
|
|
|
|
(let* ((base-dirs-count (length base-dirs)))
|
|
|
|
(while (and (not real-name) (> base-dirs-count 0))
|
2005-04-19 18:19:43 +00:00
|
|
|
(let* ((full-name (expand-file-name file-name-from-err-msg
|
|
|
|
(nth (1- base-dirs-count) base-dirs))))
|
2004-11-25 16:43:32 +00:00
|
|
|
(if (file-exists-p full-name)
|
|
|
|
(setq real-name full-name))
|
|
|
|
(setq base-dirs-count (1- base-dirs-count))))))
|
|
|
|
real-name))
|
2004-05-29 12:55:24 +00:00
|
|
|
|
2004-11-25 16:33:53 +00:00
|
|
|
(defun flymake-init-find-buildfile-dir (buffer source-file-name buildfile-name)
|
2004-11-25 16:43:32 +00:00
|
|
|
"Find buildfile, store its dir in buffer data and return its dir, if found."
|
|
|
|
(let* ((buildfile-dir (flymake-find-buildfile buildfile-name
|
|
|
|
(file-name-directory source-file-name)
|
|
|
|
flymake-buildfile-dirs)))
|
|
|
|
(if (not buildfile-dir)
|
|
|
|
(progn
|
|
|
|
(flymake-log 1 "no buildfile (%s) for %s" buildfile-name source-file-name)
|
|
|
|
(flymake-report-fatal-status buffer "NOMK" (format "No buildfile (%s) found for %s" buildfile-name source-file-name))
|
|
|
|
)
|
|
|
|
(progn
|
|
|
|
(flymake-set-buffer-value buffer "base-dir" buildfile-dir)))
|
|
|
|
buildfile-dir))
|
2004-05-29 12:55:24 +00:00
|
|
|
|
2004-11-25 16:33:53 +00:00
|
|
|
(defun flymake-init-create-temp-source-and-master-buffer-copy (buffer get-incl-dirs-f create-temp-f master-file-masks include-regexp-list)
|
2004-11-25 16:43:32 +00:00
|
|
|
"Find master file (or buffer), create it's copy along with a copy of the source file."
|
|
|
|
(let* ((source-file-name (buffer-file-name buffer))
|
|
|
|
(temp-source-file-name (flymake-init-create-temp-buffer-copy buffer create-temp-f))
|
|
|
|
(master-file-name nil)
|
|
|
|
(temp-master-file-name nil)
|
|
|
|
(master-and-temp-master (flymake-create-master-file
|
|
|
|
source-file-name temp-source-file-name
|
|
|
|
get-incl-dirs-f create-temp-f
|
|
|
|
master-file-masks include-regexp-list)))
|
|
|
|
|
|
|
|
(if (not master-and-temp-master)
|
|
|
|
(progn
|
|
|
|
(flymake-log 1 "cannot find master file for %s" source-file-name)
|
|
|
|
(flymake-report-status buffer "!" "") ; NOMASTER
|
|
|
|
)
|
|
|
|
(progn
|
|
|
|
(setq master-file-name (nth 0 master-and-temp-master))
|
|
|
|
(setq temp-master-file-name (nth 1 master-and-temp-master))
|
|
|
|
(flymake-set-buffer-value buffer "master-file-name" master-file-name)
|
|
|
|
(flymake-set-buffer-value buffer "temp-master-file-name" temp-master-file-name)
|
|
|
|
))
|
|
|
|
temp-master-file-name))
|
2004-05-29 12:55:24 +00:00
|
|
|
|
2004-11-25 16:33:53 +00:00
|
|
|
(defun flymake-master-cleanup (buffer)
|
2004-11-25 16:43:32 +00:00
|
|
|
(flymake-simple-cleanup buffer)
|
|
|
|
(flymake-safe-delete-file (flymake-get-buffer-value buffer "temp-master-file-name")))
|
2004-05-29 12:55:24 +00:00
|
|
|
|
|
|
|
;;;; make-specific init-cleanup routines
|
2004-11-25 16:33:53 +00:00
|
|
|
(defun flymake-get-syntax-check-program-args (source-file-name base-dir use-relative-base-dir use-relative-source get-cmd-line-f)
|
2004-11-25 16:43:32 +00:00
|
|
|
"Create a command line for syntax check using GET-CMD-LINE-F."
|
|
|
|
(let* ((my-base-dir base-dir)
|
|
|
|
(my-source source-file-name))
|
2004-05-29 12:55:24 +00:00
|
|
|
|
2004-11-25 16:43:32 +00:00
|
|
|
(when use-relative-base-dir
|
|
|
|
(setq my-base-dir (flymake-build-relative-filename (file-name-directory source-file-name) base-dir)))
|
2004-05-29 12:55:24 +00:00
|
|
|
|
2004-11-25 16:43:32 +00:00
|
|
|
(when use-relative-source
|
|
|
|
(setq my-source (concat (flymake-build-relative-filename base-dir (file-name-directory source-file-name))
|
|
|
|
(file-name-nondirectory source-file-name))))
|
|
|
|
(funcall get-cmd-line-f my-source my-base-dir)))
|
2004-05-29 12:55:24 +00:00
|
|
|
|
2004-11-25 16:33:53 +00:00
|
|
|
(defun flymake-get-make-cmdline (source base-dir)
|
2004-11-25 16:43:32 +00:00
|
|
|
(list "make"
|
|
|
|
(list "-s"
|
|
|
|
"-C"
|
|
|
|
base-dir
|
|
|
|
(concat "CHK_SOURCES=" source)
|
|
|
|
"SYNTAX_CHECK_MODE=1"
|
|
|
|
"check-syntax")))
|
2004-05-29 12:55:24 +00:00
|
|
|
|
2004-11-25 16:33:53 +00:00
|
|
|
(defun flymake-get-ant-cmdline (source base-dir)
|
2004-11-25 16:43:32 +00:00
|
|
|
(list "ant"
|
|
|
|
(list "-buildfile"
|
|
|
|
(concat base-dir "/" "build.xml")
|
|
|
|
(concat "-DCHK_SOURCES=" source)
|
|
|
|
"check-syntax")))
|
2004-05-29 12:55:24 +00:00
|
|
|
|
2004-11-25 16:33:53 +00:00
|
|
|
(defun flymake-simple-make-init-impl (buffer create-temp-f use-relative-base-dir use-relative-source build-file-name get-cmdline-f)
|
2004-11-25 16:43:32 +00:00
|
|
|
"Create syntax check command line for a directly checked source file.
|
2004-11-25 16:33:53 +00:00
|
|
|
Use CREATE-TEMP-F for creating temp copy."
|
2004-11-25 16:43:32 +00:00
|
|
|
(let* ((args nil)
|
|
|
|
(source-file-name (buffer-file-name buffer))
|
|
|
|
(buildfile-dir (flymake-init-find-buildfile-dir buffer source-file-name build-file-name)))
|
|
|
|
(if buildfile-dir
|
|
|
|
(let* ((temp-source-file-name (flymake-init-create-temp-buffer-copy buffer create-temp-f)))
|
|
|
|
(setq args (flymake-get-syntax-check-program-args temp-source-file-name buildfile-dir
|
|
|
|
use-relative-base-dir use-relative-source
|
|
|
|
get-cmdline-f))))
|
|
|
|
args))
|
2004-05-29 12:55:24 +00:00
|
|
|
|
2004-11-25 16:33:53 +00:00
|
|
|
(defun flymake-simple-make-init (buffer)
|
2004-11-25 16:43:32 +00:00
|
|
|
(flymake-simple-make-init-impl buffer 'flymake-create-temp-inplace t t "Makefile" 'flymake-get-make-cmdline))
|
2004-05-29 12:55:24 +00:00
|
|
|
|
2004-11-25 16:33:53 +00:00
|
|
|
(defun flymake-master-make-init (buffer get-incl-dirs-f master-file-masks include-regexp-list)
|
2005-03-24 22:42:42 +00:00
|
|
|
"Create make command line for a source file checked via master file compilation."
|
2004-11-25 16:43:32 +00:00
|
|
|
(let* ((make-args nil)
|
|
|
|
(temp-master-file-name (flymake-init-create-temp-source-and-master-buffer-copy
|
|
|
|
buffer get-incl-dirs-f 'flymake-create-temp-inplace
|
|
|
|
master-file-masks include-regexp-list)))
|
|
|
|
(when temp-master-file-name
|
|
|
|
(let* ((buildfile-dir (flymake-init-find-buildfile-dir buffer temp-master-file-name "Makefile")))
|
|
|
|
(if buildfile-dir
|
|
|
|
(setq make-args (flymake-get-syntax-check-program-args
|
|
|
|
temp-master-file-name buildfile-dir nil nil 'flymake-get-make-cmdline)))))
|
|
|
|
make-args))
|
2004-05-29 12:55:24 +00:00
|
|
|
|
2004-11-25 16:33:53 +00:00
|
|
|
(defun flymake-find-make-buildfile (source-dir)
|
2004-11-25 16:43:32 +00:00
|
|
|
(flymake-find-buildfile "Makefile" source-dir flymake-buildfile-dirs))
|
2004-05-29 12:55:24 +00:00
|
|
|
|
|
|
|
;;;; .h/make specific
|
2004-11-25 16:33:53 +00:00
|
|
|
(defun flymake-master-make-header-init (buffer)
|
2004-11-25 16:43:32 +00:00
|
|
|
(flymake-master-make-init buffer
|
|
|
|
'flymake-get-include-dirs
|
|
|
|
'(".+\\.cpp$" ".+\\.c$")
|
|
|
|
'("[ \t]*#[ \t]*include[ \t]*\"\\([\w0-9/\\_\.]*[/\\]*\\)\\(%s\\)\"" 1 2)))
|
2004-05-29 12:55:24 +00:00
|
|
|
|
|
|
|
;;;; .java/make specific
|
2004-11-25 16:33:53 +00:00
|
|
|
(defun flymake-simple-make-java-init (buffer)
|
2004-11-25 16:43:32 +00:00
|
|
|
(flymake-simple-make-init-impl buffer 'flymake-create-temp-with-folder-structure nil nil "Makefile" 'flymake-get-make-cmdline))
|
2004-05-29 12:55:24 +00:00
|
|
|
|
2004-11-25 16:33:53 +00:00
|
|
|
(defun flymake-simple-ant-java-init (buffer)
|
2004-11-25 16:43:32 +00:00
|
|
|
(flymake-simple-make-init-impl buffer 'flymake-create-temp-with-folder-structure nil nil "build.xml" 'flymake-get-ant-cmdline))
|
2004-05-29 12:55:24 +00:00
|
|
|
|
2004-11-25 16:33:53 +00:00
|
|
|
(defun flymake-simple-java-cleanup (buffer)
|
2005-03-24 22:42:42 +00:00
|
|
|
"Cleanup after `flymake-simple-make-java-init' -- delete temp file and dirs."
|
2004-11-25 16:43:32 +00:00
|
|
|
(let* ((temp-source-file-name (flymake-get-buffer-value buffer "temp-source-file-name")))
|
|
|
|
(flymake-safe-delete-file temp-source-file-name)
|
|
|
|
(when temp-source-file-name
|
|
|
|
(flymake-delete-temp-directory (file-name-directory temp-source-file-name)))))
|
2004-05-29 12:55:24 +00:00
|
|
|
|
|
|
|
;;;; perl-specific init-cleanup routines
|
2004-11-25 16:33:53 +00:00
|
|
|
(defun flymake-perl-init (buffer)
|
2005-03-25 00:06:07 +00:00
|
|
|
(let* ((temp-file (flymake-init-create-temp-buffer-copy
|
|
|
|
buffer 'flymake-create-temp-inplace))
|
|
|
|
(local-file (concat (flymake-build-relative-filename
|
|
|
|
(file-name-directory buffer-file-name)
|
|
|
|
(file-name-directory temp-file))
|
2004-11-25 16:43:32 +00:00
|
|
|
(file-name-nondirectory temp-file))))
|
|
|
|
(list "perl" (list "-wc " local-file))))
|
2004-05-29 12:55:24 +00:00
|
|
|
|
|
|
|
;;;; tex-specific init-cleanup routines
|
2004-11-25 16:33:53 +00:00
|
|
|
(defun flymake-get-tex-args (file-name)
|
2005-03-24 22:42:42 +00:00
|
|
|
;;(list "latex" (list "-c-style-errors" file-name))
|
2004-11-25 16:43:32 +00:00
|
|
|
(list "texify" (list "--pdf" "--tex-option=-c-style-errors" file-name)))
|
2004-05-29 12:55:24 +00:00
|
|
|
|
2004-11-25 16:33:53 +00:00
|
|
|
(defun flymake-simple-tex-init (buffer)
|
2004-11-25 16:43:32 +00:00
|
|
|
(flymake-get-tex-args (flymake-init-create-temp-buffer-copy buffer 'flymake-create-temp-inplace)))
|
2004-05-29 12:55:24 +00:00
|
|
|
|
2004-11-25 16:33:53 +00:00
|
|
|
(defun flymake-master-tex-init (buffer)
|
2004-11-25 16:43:32 +00:00
|
|
|
(let* ((temp-master-file-name (flymake-init-create-temp-source-and-master-buffer-copy
|
|
|
|
buffer 'flymake-get-include-dirs-dot 'flymake-create-temp-inplace
|
|
|
|
'(".+\\.tex$")
|
|
|
|
'("[ \t]*\\input[ \t]*{\\(.*\\)\\(%s\\)}" 1 2))))
|
|
|
|
(when temp-master-file-name
|
|
|
|
(flymake-get-tex-args temp-master-file-name))))
|
2004-05-29 12:55:24 +00:00
|
|
|
|
2004-11-25 16:33:53 +00:00
|
|
|
(defun flymake-get-include-dirs-dot (base-dir)
|
2004-11-25 16:43:32 +00:00
|
|
|
'("."))
|
2004-05-29 12:55:24 +00:00
|
|
|
|
|
|
|
;;;; xml-specific init-cleanup routines
|
2005-03-25 00:06:07 +00:00
|
|
|
(defun flymake-xml-init (buffer)
|
2004-11-25 16:43:32 +00:00
|
|
|
(list "xml" (list "val" (flymake-init-create-temp-buffer-copy buffer 'flymake-create-temp-inplace))))
|
2004-11-25 16:33:53 +00:00
|
|
|
|
|
|
|
(provide 'flymake)
|
2004-05-29 12:55:24 +00:00
|
|
|
|
2005-03-24 22:42:42 +00:00
|
|
|
;; arch-tag: 8f0d6090-061d-4cac-8862-7c151c4a02dd
|
2004-05-29 12:55:24 +00:00
|
|
|
;;; flymake.el ends here
|