comparison lisp/auto-autoloads.el @ 462:0784d089fdc9 r21-2-46

Import from CVS: tag r21-2-46
author cvs
date Mon, 13 Aug 2007 11:44:37 +0200
parents 3d3049ae1304
children 5aa1854ad537
comparison
equal deleted inserted replaced
461:120ed4009e51 462:0784d089fdc9
976 976
977 (define-obsolete-variable-alias 'font-lock-use-maximal-decoration 'font-lock-maximum-decoration) 977 (define-obsolete-variable-alias 'font-lock-use-maximal-decoration 'font-lock-maximum-decoration)
978 978
979 (defcustom font-lock-maximum-size (* 250 1024) "*If non-nil, the maximum size for buffers for fontifying.\nOnly buffers less than this can be fontified when Font Lock mode is turned on.\nIf nil, means size is irrelevant.\nIf a list, each element should be a cons pair of the form (MAJOR-MODE . SIZE),\nwhere MAJOR-MODE is a symbol or t (meaning the default). For example:\n ((c++-mode . 256000) (c-mode . 256000) (rmail-mode . 1048576))\nmeans that the maximum size is 250K for buffers in `c++-mode' or `c-mode', one\nmegabyte for buffers in `rmail-mode', and size is irrelevant otherwise." :type '(choice (const :tag "none" nil) (integer :tag "size") (repeat :menu-tag "mode specific" :tag "mode specific" :value ((t)) (cons :tag "Instance" (radio :tag "Mode" (const :tag "all" t) (symbol :tag "name")) (radio :tag "Size" (const :tag "none" nil) (integer :tag "size"))))) :group 'font-lock) 979 (defcustom font-lock-maximum-size (* 250 1024) "*If non-nil, the maximum size for buffers for fontifying.\nOnly buffers less than this can be fontified when Font Lock mode is turned on.\nIf nil, means size is irrelevant.\nIf a list, each element should be a cons pair of the form (MAJOR-MODE . SIZE),\nwhere MAJOR-MODE is a symbol or t (meaning the default). For example:\n ((c++-mode . 256000) (c-mode . 256000) (rmail-mode . 1048576))\nmeans that the maximum size is 250K for buffers in `c++-mode' or `c-mode', one\nmegabyte for buffers in `rmail-mode', and size is irrelevant otherwise." :type '(choice (const :tag "none" nil) (integer :tag "size") (repeat :menu-tag "mode specific" :tag "mode specific" :value ((t)) (cons :tag "Instance" (radio :tag "Mode" (const :tag "all" t) (symbol :tag "name")) (radio :tag "Size" (const :tag "none" nil) (integer :tag "size"))))) :group 'font-lock)
980 980
981 (defcustom font-lock-fontify-string-delimiters nil "*If non-nil, apply font-lock-string-face to string delimiters as well as\nstring text when fontifying." :type 'boolean :group 'font-lock)
982
981 (defvar font-lock-keywords nil "\ 983 (defvar font-lock-keywords nil "\
982 A list defining the keywords for `font-lock-mode' to highlight. 984 A list defining the keywords for `font-lock-mode' to highlight.
983 985
984 FONT-LOCK-KEYWORDS := List of FONT-LOCK-FORM's. 986 FONT-LOCK-KEYWORDS := List of FONT-LOCK-FORM's.
985 987
1096 Be very careful composing regexps for this list; the wrong pattern can 1098 Be very careful composing regexps for this list; the wrong pattern can
1097 dramatically slow things down! 1099 dramatically slow things down!
1098 ") 1100 ")
1099 1101
1100 (make-variable-buffer-local 'font-lock-keywords) 1102 (make-variable-buffer-local 'font-lock-keywords)
1103
1104 (defvar font-lock-syntactic-keywords nil "\
1105 A list of the syntactic keywords to highlight.
1106 Can be the list or the name of a function or variable whose value is the list.
1107 See `font-lock-keywords' for a description of the form of this list;
1108 the differences are listed below. MATCH-HIGHLIGHT should be of the form:
1109
1110 (MATCH SYNTAX OVERRIDE LAXMATCH)
1111
1112 where SYNTAX can be of the form (SYNTAX-CODE . MATCHING-CHAR), the name of a
1113 syntax table, or an expression whose value is such a form or a syntax table.
1114 OVERRIDE cannot be `prepend' or `append'.
1115
1116 For example, an element of the form highlights syntactically:
1117
1118 (\"\\\\$\\\\(#\\\\)\" 1 (1 . nil))
1119
1120 a hash character when following a dollar character, with a SYNTAX-CODE of
1121 1 (meaning punctuation syntax). Assuming that the buffer syntax table does
1122 specify hash characters to have comment start syntax, the element will only
1123 highlight hash characters that do not follow dollar characters as comments
1124 syntactically.
1125
1126 (\"\\\\('\\\\).\\\\('\\\\)\"
1127 (1 (7 . ?'))
1128 (2 (7 . ?')))
1129
1130 both single quotes which surround a single character, with a SYNTAX-CODE of
1131 7 (meaning string quote syntax) and a MATCHING-CHAR of a single quote (meaning
1132 a single quote matches a single quote). Assuming that the buffer syntax table
1133 does not specify single quotes to have quote syntax, the element will only
1134 highlight single quotes of the form 'c' as strings syntactically.
1135 Other forms, such as foo'bar or 'fubar', will not be highlighted as strings.
1136
1137 This is normally set via `font-lock-defaults'.")
1138
1139 (make-variable-buffer-local 'font-lock-syntactic-keywords)
1101 1140
1102 (defcustom font-lock-mode nil "Non nil means `font-lock-mode' is on" :group 'font-lock :type 'boolean :initialize 'custom-initialize-default :require 'font-lock :set (function (lambda (var val) (font-lock-mode (or val 0))))) 1141 (defcustom font-lock-mode nil "Non nil means `font-lock-mode' is on" :group 'font-lock :type 'boolean :initialize 'custom-initialize-default :require 'font-lock :set (function (lambda (var val) (font-lock-mode (or val 0)))))
1103 1142
1104 (defvar font-lock-mode-hook nil "\ 1143 (defvar font-lock-mode-hook nil "\
1105 Function or functions to run on entry to font-lock-mode.") 1144 Function or functions to run on entry to font-lock-mode.")
1758 (or sound-alist (setq sound-alist '((ready nil) (warp nil)))) 1797 (or sound-alist (setq sound-alist '((ready nil) (warp nil))))
1759 1798
1760 (autoload 'load-sound-file "sound" "\ 1799 (autoload 'load-sound-file "sound" "\
1761 Read in an audio-file and add it to the sound-alist. 1800 Read in an audio-file and add it to the sound-alist.
1762 1801
1802 FILENAME can either be absolute or relative, in which case the file will
1803 be searched in the directories given by `default-sound-directory-list'.
1804 When looking for the file, the extensions given by `sound-extension-list' are
1805 also tried in the given order.
1806
1763 You can only play sound files if you are running on display 0 of the 1807 You can only play sound files if you are running on display 0 of the
1764 console of a machine with native sound support or running a NetAudio 1808 console of a machine with native sound support or running a NetAudio
1765 server and XEmacs has the necessary sound support compiled in. 1809 server and XEmacs has the necessary sound support compiled in.
1766 1810
1767 The sound file must be in the Sun/NeXT U-LAW format, except on Linux, 1811 The sound file must be in the Sun/NeXT U-LAW format, except on Linux,