• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.9.5/emacs-92/emacs/lisp/progmodes/

Lines Matching +defs:overlays +defs:in

18 ;; GNU Emacs is distributed in the hope that it will be useful,
65 "Sorted list of line numbers and lists of err info in the form (file, err-text).")
69 "Same as `flymake-err-info', effective when a syntax check is in progress.")
87 (defalias 'flymake-replace-regexp-in-string
88 (if (eval-when-compile (fboundp 'replace-regexp-in-string))
89 'replace-regexp-in-string
91 (replace-in-string str regexp rep))))
127 POSITION and WINDOW default to the position of point in the
197 "Return current row number in current frame."
208 "Return point position in pixels: (x, y)."
245 ;; (flymake-save-buffer-in-file "d:/flymake.log" t) ; make log file name customizable
256 "Set VAL at position POS in LIST."
428 This function is used in sort to move most possible file names
479 ;; replace-match is not used here as it fails in
481 ;; check-includes calls replace-in-string
487 (flymake-save-buffer-in-file patched-master-file-name)))
497 "Replace text in BUFFER in region (BEG END) with REP."
520 "Check if SOURCE-FILE-NAME can be found in include path.
574 (defun flymake-save-buffer-in-file (file-name)
579 (flymake-log 3 "saved buffer %s in file %s" (buffer-name) file-name))
629 (let ((err-str (format "Error in process sentinel for buffer %s: %s"
641 (flymake-delete-own-overlays)
646 (flymake-log 2 "%s: %d error(s), %d warning(s) in %.2f second(s)"
661 "Split OUTPUT into lines, merge in residual if necessary."
760 "Highlight error lines in BUFFER using info from ERR-INFO-LIST."
770 "Allocate a flymake overlay in range BEG and END."
771 (when (not (flymake-region-has-flymake-overlays beg end))
782 (defun flymake-delete-own-overlays ()
783 "Delete all flymake overlays in BUFFER."
784 (dolist (ol (overlays-in (point-min) (point-max)))
790 (defun flymake-region-has-flymake-overlays (beg end)
793 (let ((ov (overlays-in beg end))
794 (has-flymake-overlays nil))
797 (setq has-flymake-overlays t))
799 has-flymake-overlays))
816 "Highlight line LINE-NO in current buffer.
854 "Parse err LINES, store info in ERR-INFO-LIST."
892 "Grab error line patterns from ORIGINAL-LIST in compile.el format.
1008 The new element is inserted in the proper position, according to
1064 (push (flymake-replace-regexp-in-string "\"" "" (nth (1- inc-count) inc-lines)) inc-dirs))
1103 ;; "Get dir to start program in."
1123 "If non-nil, syntax check won't be started in case compilation is running."
1202 (and (boundp 'compilation-in-progress)
1203 compilation-in-progress))
1230 "Return number of current line in current buffer."
1234 "Return number of lines in buffer BUFFER."
1278 "Try to get buffer for FILE and goto line LINE in it."
1299 "Show status in mode line."
1345 (flymake-log 2 "flymake cannot check syntax in buffer %s" (buffer-name))
1366 (flymake-delete-own-overlays)
1401 (if (local-variable-p 'flymake-mode (current-buffer)) ; (???) other way to determine whether flymake is active in buffer being saved?
1461 "Go to next error in err ring."
1469 (flymake-log 1 "no errors in current buffer"))))
1472 "Go to previous error in err ring."
1480 (flymake-log 1 "no errors in current buffer"))))
1539 "Make a temporary copy of the current buffer, save its name in buffer data and return the name."
1543 (flymake-save-buffer-in-file temp-source-file-name)
1617 "Find buildfile, store its dir in buffer data and return its dir, if found."