Changeset 4091 for trunk/lisp/progmodes/make-mode.el
- Timestamp:
- 05/27/06 10:35:24 (2 years ago)
- Files:
-
- trunk/lisp/progmodes/make-mode.el (modified) (7 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/lisp/progmodes/make-mode.el
r4037 r4091 247 247 :type '(repeat (list string)) 248 248 :group 'makefile) 249 (put 'makefile-special-targets-list 'risky-local-variable t) 249 250 250 251 (defcustom makefile-runtime-macros-list … … 545 546 :group 'makefile) 546 547 547 (defcustom makefile-query-one-target-method 'makefile-query-by-make-minus-q 548 (defcustom makefile-query-one-target-method-function 549 'makefile-query-by-make-minus-q 548 550 "*Function to call to determine whether a make target is up to date. 549 551 The function must satisfy this calling convention: … … 561 563 :type 'function 562 564 :group 'makefile) 565 (defvaralias 'makefile-query-one-target-method 566 'makefile-query-one-target-method-function) 563 567 564 568 (defcustom makefile-up-to-date-buffer-name "*Makefile Up-to-date overview*" … … 671 675 (defvar makefile-target-table nil 672 676 "Table of all target names known for this buffer.") 677 (put 'makefile-target-table 'risky-local-variable t) 673 678 674 679 (defvar makefile-macro-table nil 675 680 "Table of all macro names known for this buffer.") 681 (put 'makefile-macro-table 'risky-local-variable t) 676 682 677 683 (defvar makefile-browser-client … … 725 731 If you are editing a file for a different make, try one of the 726 732 variants `makefile-automake-mode', `makefile-gmake-mode', 727 `makefile-makepp-mode', `makefile-bsdmake-mode' or, 728 `makefile-imake-mode'All but the 729 last should be correctly chosen based on the file name, except if 730 it is *.mk. This function ends by invoking the function(s) 731 `makefile-mode-hook'. 733 `makefile-makepp-mode', `makefile-bsdmake-mode' or, 734 `makefile-imake-mode'. All but the last should be correctly 735 chosen based on the file name, except if it is *.mk. This 736 function ends by invoking the function(s) `makefile-mode-hook'. 732 737 733 738 It is strongly recommended to use `font-lock-mode', because that … … 1617 1622 (defun makefile-query-targets (filename target-table prereq-list) 1618 1623 "Fill the up-to-date overview buffer. 1619 Checks each target in TARGET-TABLE using `makefile-query-one-target-method' 1624 Checks each target in TARGET-TABLE using 1625 `makefile-query-one-target-method-function' 1620 1626 and generates the overview, one line per target name." 1621 1627 (insert … … 1626 1632 (needs-rebuild (or no-prereqs 1627 1633 (funcall 1628 makefile-query-one-target-method 1634 makefile-query-one-target-method-function 1629 1635 target-name 1630 1636 filename))))
