MMCT TEAM
Server IP : 111.118.215.189  /  Your IP : 3.136.20.207
Web Server : Apache
System : Linux md-in-83.webhostbox.net 4.19.286-203.ELK.el7.x86_64 #1 SMP Wed Jun 14 04:33:55 CDT 2023 x86_64
User : a1673wkz ( 2475)
PHP Version : 8.2.25
Disable Function : NONE
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : ON
Directory (0755) :  /usr/share/emacs/24.3/lisp/obsolete/

[  Home  ][  C0mmand  ][  Upload File  ]

Current File : //usr/share/emacs/24.3/lisp/obsolete/lazy-lock.elc
;ELC
;;; Compiled by mockbuild@buildfarm06-new.corp.cloudlinux.com on Fri Oct 11 10:09:08 2024
;;; from file /builddir/build/BUILD/emacs-24.3/lisp/obsolete/lazy-lock.el
;;; in Emacs version 24.3.1
;;; with all optimizations.

;;; This file uses dynamic docstrings, first added in Emacs 19.29.

;;; This file does not contain utf-8 non-ASCII characters,
;;; and so can be loaded in Emacs versions earlier than 23.

;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;


(byte-code "\300\301!\210\302\303\304\305\306\301%\207" [require font-lock custom-declare-group lazy-lock nil "Font Lock support mode to fontify lazily." :group] 6)
(defvar lazy-lock-mode nil)
(defvar lazy-lock-buffers nil)
(defvar lazy-lock-timers (byte-code "\300\211B\207" [nil] 2))
(byte-code "\300\301\302\303\304\305\306\307&\210\300\310\311\312\304\313\306\307&\210\300\314\315\316\304\317\306\307&\210\300\320\321\322\304\323\306\307&\210\300\324\325\326\304\327\306\307&\210\300\330\331\332\304\333\306\307&\210\300\334\335\336\304\337\306\307&\210\300\340\341\342\304\315\343\344\217\203]\345\202^\346\306\307&\210\300\347\350\351\304\352\306\307&\210\300\353\354\355\304\356\306\307&\207" [custom-declare-variable lazy-lock-minimum-size 25600 "Minimum size of a buffer for demand-driven fontification.\nOn-demand fontification occurs if the buffer size is greater than this value.\nIf nil, means demand-driven fontification is never performed.\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 . 25600) (c++-mode . 25600) (rmail-mode . 1048576))\nmeans that the minimum size is 25K for buffers in C or C++ modes, one megabyte\nfor buffers in Rmail mode, and size is irrelevant otherwise.\n\nThe value of this variable is used when Lazy Lock mode is turned on." :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 lazy-lock lazy-lock-defer-on-the-fly t "If non-nil, means fontification after a change should be deferred.\nIf nil, means on-the-fly fontification is performed.  This means when changes\noccur in the buffer, those areas are immediately fontified.\nIf a list, it should be a list of `major-mode' symbol names for which deferred\nfontification should occur.  The sense of the list is negated if it begins with\n`not'.  For example:\n (c-mode c++-mode)\nmeans that on-the-fly fontification is deferred for buffers in C and C++ modes\nonly, and deferral does not occur otherwise.\n\nThe value of this variable is used when Lazy Lock mode is turned on." (choice (const :tag "never" nil) (const :tag "always" t) (set :menu-tag "mode specific" :tag "modes" :value (not) (const :tag "Except" not) (repeat :inline t (symbol :tag "mode")))) lazy-lock-defer-on-scrolling nil "If non-nil, means fontification after a scroll should be deferred.\nIf nil, means demand-driven fontification is performed.  This means when\nscrolling into unfontified areas of the buffer, those areas are immediately\nfontified.  Thus scrolling never presents unfontified areas.  However, since\nfontification occurs during scrolling, scrolling may be slow.\nIf t, means defer-driven fontification is performed.  This means fontification\nof those areas is deferred.  Thus scrolling may present momentarily unfontified\nareas.  However, since fontification does not occur during scrolling, scrolling\nwill be faster than demand-driven fontification.\nIf any other value, e.g., `eventually', means demand-driven fontification is\nperformed until the buffer is fontified, then buffer fontification becomes\ndefer-driven.  Thus scrolling never presents unfontified areas until the buffer\nis first fontified, after which subsequent scrolling may present future buffer\ninsertions momentarily unfontified.  However, since fontification does not\noccur during scrolling after the buffer is first fontified, scrolling will\nbecome faster.  (But, since contextual changes continually occur, such a value\nmakes little sense if `lazy-lock-defer-contextually' is non-nil.)\n\nThe value of this variable is used when Lazy Lock mode is turned on." (choice (const :tag "never" nil) (const :tag "always" t) (other :tag "eventually" eventually)) lazy-lock-defer-contextually 'syntax-driven "If non-nil, means deferred fontification should be syntactically true.\nIf nil, means deferred fontification occurs only on those lines modified.  This\nmeans where modification on a line causes syntactic change on subsequent lines,\nthose subsequent lines are not refontified to reflect their new context.\nIf t, means deferred fontification occurs on those lines modified and all\nsubsequent lines.  This means those subsequent lines are refontified to reflect\ntheir new syntactic context, either immediately or when scrolling into them.\nIf any other value, e.g., `syntax-driven', means deferred syntactically true\nfontification occurs only if syntactic fontification is performed using the\nbuffer mode's syntax table, i.e., only if `font-lock-keywords-only' is nil.\n\nThe value of this variable is used when Lazy Lock mode is turned on." (choice (const :tag "never" nil) (const :tag "always" t) (other :tag "syntax-driven" syntax-driven)) lazy-lock-defer-time 0.25 "Time in seconds to delay before beginning deferred fontification.\nDeferred fontification occurs if there is no input within this time.\nIf nil, means fontification is never deferred, regardless of the values of the\nvariables `lazy-lock-defer-on-the-fly', `lazy-lock-defer-on-scrolling' and\n`lazy-lock-defer-contextually'.\n\nThe value of this variable is used when Lazy Lock mode is turned on." (choice (const :tag "never" nil) (number :tag "seconds")) lazy-lock-stealth-time 30 "Time in seconds to delay before beginning stealth fontification.\nStealth fontification occurs if there is no input within this time.\nIf nil, means stealth fontification is never performed.\n\nThe value of this variable is used when Lazy Lock mode is turned on." (choice (const :tag "never" nil) (number :tag "seconds")) lazy-lock-stealth-lines (if font-lock-maximum-decoration 100 250) "Maximum size of a chunk of stealth fontification.\nEach iteration of stealth fontification can fontify this number of lines.\nTo speed up input response during stealth fontification, at the cost of stealth\ntaking longer to fontify, you could reduce the value of this variable." (integer :tag "lines") lazy-lock-stealth-load (if (condition-case nil (load-average) (error)) 200) "Load in percentage above which stealth fontification is suspended.\nStealth fontification pauses when the system short-term load average (as\nreturned by the function `load-average' if supported) goes above this level,\nthus reducing the demand that stealth fontification makes on the system.\nIf nil, means stealth fontification is never suspended.\nTo reduce machine load during stealth fontification, at the cost of stealth\ntaking longer to fontify, you could reduce the value of this variable.\nSee also `lazy-lock-stealth-nice'." (load-average) ((error)) (choice (const :tag "never" nil) (integer :tag "load")) (const :format "%t: unsupported\n" nil) lazy-lock-stealth-nice 0.125 "Time in seconds to pause between chunks of stealth fontification.\nEach iteration of stealth fontification is separated by this amount of time,\nthus reducing the demand that stealth fontification makes on the system.\nIf nil, means stealth fontification is never paused.\nTo reduce machine load during stealth fontification, at the cost of stealth\ntaking longer to fontify, you could increase the value of this variable.\nSee also `lazy-lock-stealth-load'." (choice (const :tag "never" nil) (number :tag "seconds")) lazy-lock-stealth-verbose (and (not lazy-lock-defer-contextually) (not (null font-lock-verbose))) "If non-nil, means stealth fontification should show status messages." boolean] 8)
#@2952 Toggle Lazy Lock mode.
With arg, turn Lazy Lock mode on if and only if arg is positive.  Enable it
automatically in your `~/.emacs' by:

 (setq font-lock-support-mode 'lazy-lock-mode)

For a newer font-lock support mode with similar functionality, see
`jit-lock-mode'.  Eventually, Lazy Lock mode will be deprecated in
JIT Lock's favor.

When Lazy Lock mode is enabled, fontification can be lazy in a number of ways:

- Demand-driven buffer fontification if `lazy-lock-minimum-size' is non-nil.
  This means initial fontification does not occur if the buffer is greater than
  `lazy-lock-minimum-size' characters in length.  Instead, fontification occurs
  when necessary, such as when scrolling through the buffer would otherwise
  reveal unfontified areas.  This is useful if buffer fontification is too slow
  for large buffers.

- Deferred scroll fontification if `lazy-lock-defer-on-scrolling' is non-nil.
  This means demand-driven fontification does not occur as you scroll.
  Instead, fontification is deferred until after `lazy-lock-defer-time' seconds
  of Emacs idle time, while Emacs remains idle.  This is useful if
  fontification is too slow to keep up with scrolling.

- Deferred on-the-fly fontification if `lazy-lock-defer-on-the-fly' is non-nil.
  This means on-the-fly fontification does not occur as you type.  Instead,
  fontification is deferred until after `lazy-lock-defer-time' seconds of Emacs
  idle time, while Emacs remains idle.  This is useful if fontification is too
  slow to keep up with your typing.

- Deferred context fontification if `lazy-lock-defer-contextually' is non-nil.
  This means fontification updates the buffer corresponding to true syntactic
  context, after `lazy-lock-defer-time' seconds of Emacs idle time, while Emacs
  remains idle.  Otherwise, fontification occurs on modified lines only, and
  subsequent lines can remain fontified corresponding to previous syntactic
  contexts.  This is useful where strings or comments span lines.

- Stealthy buffer fontification if `lazy-lock-stealth-time' is non-nil.
  This means remaining unfontified areas of buffers are fontified if Emacs has
  been idle for `lazy-lock-stealth-time' seconds, while Emacs remains idle.
  This is useful if any buffer has any deferred fontification.

Basic Font Lock mode on-the-fly fontification behavior fontifies modified
lines only.  Thus, if `lazy-lock-defer-contextually' is non-nil, Lazy Lock mode
on-the-fly fontification may fontify differently, albeit correctly.  In any
event, to refontify some lines you can use \[font-lock-fontify-block].

Stealth fontification only occurs while the system remains unloaded.
If the system load rises above `lazy-lock-stealth-load' percent, stealth
fontification is suspended.  Stealth fontification intensity is controlled via
the variable `lazy-lock-stealth-nice' and `lazy-lock-stealth-lines', and
verbosity is controlled via the variable `lazy-lock-stealth-verbose'.
(defalias 'lazy-lock-mode #[(&optional arg) "\300\n>?\205\203\306!\307V\202	?\211\203*
\204*\310\311!\210\312\313!\202E\f\2039\314\300!\210\315\316 \202E	\205E\314\300!\210\317\320 *\207" [lazy-lock-mode was-on font-lock-inhibit-thing-lock arg now-on font-lock-mode prefix-numeric-value 0 message "Use font-lock-support-mode rather than calling lazy-lock-mode" sit-for 2 make-local-variable t lazy-lock-install nil lazy-lock-unstall] 3 (#$ . 8202) "P"])
#@41 Unconditionally turn on Lazy Lock mode.
(defalias 'turn-on-lazy-lock #[nil "\300\301!\207" [lazy-lock-mode t] 2 (#$ . 11632)])
(defalias 'lazy-lock-install #[nil "\306!	\205\n	\205
	\205\f\205\f\307=\206
?\310\311!\210\2053\312 Y\211	\204?\313 \210\202^\314p\315\307#\316 \210\203]\317@!\210A\211\204N)\320	\242\321=\203sA>?\202\203<\203\201>\202\203\307=$\210\322\204\233\204\233\205\234	\",\207" [lazy-lock-minimum-size lazy-lock-defer-time lazy-lock-defer-on-the-fly lazy-lock-defer-on-scrolling lazy-lock-defer-contextually font-lock-keywords-only font-lock-value-in-major-mode t make-local-variable font-lock-fontified buffer-size lazy-lock-after-fontify-buffer get-buffer-window-list nomini lazy-lock-after-unfontify-buffer lazy-lock-fontify-conservatively lazy-lock-install-hooks not lazy-lock-install-timers defer-context defer-scroll defer-change min-size windows major-mode lazy-lock-stealth-time] 6])
(defalias 'lazy-lock-install-hooks #[(fontifying defer-change defer-scroll defer-context) "\204	\204\n\204\203\304\305\n\203\306\202\307\310\311$\210\2032	\2042\2042\304\312\313\310\311$\210\314\315\316\311#\210\304\315	\203F\203F\317\202W	\203N\320\202W\203V\321\202W\322\310\311$\210\304\323\324\310\311$\210\304\325\324\310\311$\207" [fontifying defer-change defer-scroll defer-context add-hook window-scroll-functions lazy-lock-defer-after-scroll lazy-lock-fontify-after-scroll nil t before-change-functions lazy-lock-arrange-before-change remove-hook after-change-functions font-lock-after-change-function lazy-lock-defer-rest-after-change lazy-lock-defer-line-after-change lazy-lock-fontify-rest-after-change lazy-lock-fontify-line-after-change outline-view-change-hook lazy-lock-fontify-after-visage hs-hide-hook] 5])
(defalias 'lazy-lock-install-timers #[(dtime stime) "	@@=\204$	@\211A\203\305\nA!\210	\211\205 \306\307\310#B\240\210)	A@=?\205H	A\211A\203:\305\fA!\210	\211\205E\306\307\311#B\241)\207" [dtime lazy-lock-timers defer stime stealth cancel-timer run-with-idle-timer t lazy-lock-fontify-after-defer lazy-lock-fontify-after-idle] 7])
(defalias 'lazy-lock-unstall #[nil "\203A\305 \203:	\247\203\306 	V\202	\211\205 \307\310\311 \"\312\313\216\f\2031\314 \315\316\f\"\210\214~\210\317ed\"\210-\320\321\322\312\323$\210\324 \210\325\326\327\323#\210\325\326\330\323#\210\325\331\332\323#\210\325\321\333\323#\210\325\321\334\323#\210\325\321\335\323#\210\325\321\336\323#\210\325\337\340\323#\210\325\341\340\323#\207" [font-lock-mode font-lock-verbose verbose #1=#:current-message #2=#:with-temp-message lazy-lock-unfontified-p buffer-size format "Fontifying %s..." buffer-name nil ((byte-code "\203	\203\302\303	\"\210\202\302\304!\210\304\207" [#2# #1# message #3="%s" nil] 3)) current-message message #3# lazy-lock-fontify-region add-hook after-change-functions font-lock-after-change-function t lazy-lock-after-unfontify-buffer remove-hook window-scroll-functions lazy-lock-fontify-after-scroll lazy-lock-defer-after-scroll before-change-functions lazy-lock-arrange-before-change lazy-lock-fontify-line-after-change lazy-lock-fontify-rest-after-change lazy-lock-defer-line-after-change lazy-lock-defer-rest-after-change outline-view-change-hook lazy-lock-fontify-after-visage hs-hide-hook] 6])
(defalias 'lazy-lock-fontify-after-scroll #[(window window-start) "\303\304	\305\n\303\"\"\210)\306\n\307\"\207" [inhibit-point-motion-hooks window-start window t lazy-lock-fontify-region window-end set-window-redisplay-end-trigger nil] 5])
(defalias 'lazy-lock-defer-after-scroll #[(window window-start) "p>\204\npB\302	\303\"\207" [lazy-lock-buffers window set-window-redisplay-end-trigger nil] 3])
(defalias 'lazy-lock-fontify-after-resize #[(frame) "\212\302 r\303\216\304	!\210\305\306\307	#,\207" [save-selected-window--state frame internal--before-save-selected-window ((internal--after-save-selected-window save-selected-window--state)) select-frame walk-windows #[(window) "\302!q\210	\203
\303!\210\304\305\"\207" [window lazy-lock-mode window-buffer lazy-lock-fontify-conservatively set-window-redisplay-end-trigger nil] 3] nomini] 4])
(defalias 'lazy-lock-arrange-before-change #[(beg end) "	=?\2056\304p\305\306#\307\211\2055@\310\311\n!!\204$\312\n\313 \"\210\311\n!\314\n!\307\223\210A\211\204\307*\207" [beg end window windows get-buffer-window-list nomini t nil markerp window-redisplay-end-trigger set-window-redisplay-end-trigger make-marker window-end] 5])
(defalias 'lazy-lock-fontify-after-trigger #[(window trigger-point) "\303\304	\305\n\303\"\")\207" [inhibit-point-motion-hooks trigger-point window t lazy-lock-fontify-region window-end] 5])
(defalias 'lazy-lock-fontify-line-after-change 'font-lock-after-change-function)
(defalias 'lazy-lock-fontify-rest-after-change #[(beg end old-len) "\306	\n#\210\307 \310\211\310\211
\311\211\311p>\204)pB\214~\210\312	d\313#\210)?\205@\307 \205@\314\311!.\207" [beg end old-len modified buffer-undo-list inhibit-read-only lazy-lock-fontify-line-after-change buffer-modified-p t nil remove-text-properties (lazy-lock nil) restore-buffer-modified-p inhibit-point-motion-hooks inhibit-modification-hooks deactivate-mark buffer-file-name buffer-file-truename lazy-lock-buffers] 5])
(defalias 'lazy-lock-defer-line-after-change #[(beg end old-len) "\306 \307\211\307\211\310\211\f\310
p>\204 pB\311Se]Td^\312#\210?\205;\306 \205;\313\310!.\207" [modified buffer-undo-list inhibit-read-only inhibit-point-motion-hooks inhibit-modification-hooks deactivate-mark buffer-modified-p t nil remove-text-properties (lazy-lock nil) restore-buffer-modified-p buffer-file-name buffer-file-truename lazy-lock-buffers beg end] 5])
(defalias 'lazy-lock-defer-rest-after-change #[(beg end old-len) "\306 \307\211\307\211\310\211\f\310
p>\204 pB\214~\210\311Se]d\312#\210)?\205;\306 \205;\313\310!.\207" [modified buffer-undo-list inhibit-read-only inhibit-point-motion-hooks inhibit-modification-hooks deactivate-mark buffer-modified-p t nil remove-text-properties (lazy-lock nil) restore-buffer-modified-p buffer-file-name buffer-file-truename lazy-lock-buffers beg] 5])
(defalias 'lazy-lock-fontify-after-defer #[nil "\212\2039\306 \2049@\307\310\n!\2032\nq\210\2032\311\n\312\313#\211\2032\314	@!\210	A\211\204&A*\202)\205_\f\205_\315
>\205_\306 \206O\316 ?\205_\317\305\315\313#\210\320\305\321\307\313$\207" [lazy-lock-buffers windows buffer lazy-lock-mode lazy-lock-defer-on-scrolling window-scroll-functions input-pending-p nil buffer-live-p get-buffer-window-list nomini t lazy-lock-fontify-window lazy-lock-fontify-after-scroll lazy-lock-unfontified-p remove-hook add-hook lazy-lock-defer-after-scroll] 6])
(defalias 'lazy-lock-fontify-after-idle #[nil "\206\306\307 !?\205\261\310 \311\312\211\211\212
@q\210\203&\313 \204-\314 ?\202\241\2053\315\312\316\216\203I\317 \303\320\"\210\203m\321 @V\203m\203a\303\322!\210\312\323\206h\324!\202\227\203\207\203\201\303\325\326 \327 #\210\202\207\303\315!\210\311
@q\210\330 \210\323 \206\225\331!\313 \203\240\f\204I+
A\211\205\257\f\205\257\202.\207" [executing-kbd-macro minibuffer-auto-raise message-log-max message continue buffers window-minibuffer-p selected-window buffer-list t nil lazy-lock-unfontified-p input-pending-p "Fontifying stealthily..." ((byte-code "\203	\203\302\303	\"\210\202\302\304!\210\304\207" [#1=#:with-temp-message #2=#:current-message message #3="%s" nil] 3)) current-message #3# load-average "Fontifying stealthily...suspended" sit-for 30 "Fontifying stealthily... %2d%% of %s" lazy-lock-percent-fontified buffer-name lazy-lock-fontify-chunk 0 lazy-lock-mode lazy-lock-stealth-verbose #2# #1# lazy-lock-stealth-load lazy-lock-stealth-time lazy-lock-stealth-nice] 6])
(defalias 'lazy-lock-fontify-after-visage #[nil "\301p\302\303#\211\205\304@!\210A\211\204\n\305)\207" [windows get-buffer-window-list nomini t lazy-lock-fontify-conservatively nil] 5])
(defalias 'lazy-lock-after-fontify-buffer #[nil "\306 \307\211\307\211\310\211\f\310
\311ed\312#\210?\205&\306 \205&\313\310!.\207" [modified buffer-undo-list inhibit-read-only inhibit-point-motion-hooks inhibit-modification-hooks deactivate-mark buffer-modified-p t nil add-text-properties (lazy-lock t) restore-buffer-modified-p buffer-file-name buffer-file-truename] 5])
(defalias 'lazy-lock-after-unfontify-buffer #[nil "\306 \307\211\307\211\310\211\f\310
\311ed\312#\210?\205&\306 \205&\313\310!.\207" [modified buffer-undo-list inhibit-read-only inhibit-point-motion-hooks inhibit-modification-hooks deactivate-mark buffer-modified-p t nil remove-text-properties (lazy-lock nil) restore-buffer-modified-p buffer-file-name buffer-file-truename] 5])
(defalias 'lazy-lock-fontify-region #[(beg end) "\214~\210\306	\307\310$\211\205D\212\311 \312\216\310\211\313 \314\211\314\211\310\211\310\315\316\317\217\210
?\205B\313 \205B\320\310!.
)\207" [beg end save-match-data-internal font-lock-beginning-of-syntax-function next modified text-property-any lazy-lock nil match-data ((byte-code "\301\302\"\207" [save-match-data-internal set-match-data evaporate] 3)) buffer-modified-p t data (byte-code "\303	\304\305$\206\n	b\210n\204\306 \210`\nb\210n\204#\307y\210`\310\n\"\210\311\n\312#\210\303\n	\304\307$\211\204\307\207" [beg end next text-property-any lazy-lock t beginning-of-line nil font-lock-fontify-region add-text-properties (lazy-lock t)] 6) (((error quit) (message "Fontifying region...%s" data))) restore-buffer-modified-p buffer-undo-list inhibit-read-only inhibit-point-motion-hooks inhibit-modification-hooks deactivate-mark buffer-file-name buffer-file-truename] 6])
(defalias 'lazy-lock-fontify-chunk #[nil "\304\212\214~\210\305\210\306`\307\"\310`d\307\305$\211\203'	\203B	`Z`\nZW\203B\311	\206-eb\210\312 \210`	\2068eb\210y\210`\"\202S\311\nb\210[y\210`\nb\210\305y\210`\"-\207" [inhibit-point-motion-hooks next prev lazy-lock-stealth-lines t nil previous-single-property-change lazy-lock text-property-any lazy-lock-fontify-region beginning-of-line] 7])
(defalias 'lazy-lock-fontify-window #[(window) "r\301!q\210\302\303!\304!\")\207" [window window-buffer lazy-lock-fontify-region window-start window-end] 4])
(defalias 'lazy-lock-fontify-conservatively #[(window) "r\302!q\210\303\304\212\305!b\210\306\307![\"\210`)\212\305!b\210\306\307!\"\210`)\"*\207" [window inhibit-point-motion-hooks window-buffer t lazy-lock-fontify-region window-point vertical-motion window-height] 5])
(defalias 'lazy-lock-unfontified-p #[nil "\214~\210\300ed\301\302$)\207" [text-property-any lazy-lock nil] 5])
(defalias 'lazy-lock-percent-fontified #[nil "\214~\210e\303\304\305\nd\306\307$\211\203*\305\nd\306\304$\206d	\nZ\\\202	\310\311	!d\245\312_!,\207" [next size beg 0 nil text-property-any lazy-lock t truncate float 100] 5])
(byte-code ":\203\207	r\306\307!q\210p\310 \210\n\311\211\312\211\31245\313 \210\314\315!\210+\21167\316\317!\210\316!\210\316\320!\210\316\321!\210\316\322!\210\316\323\324!!\210\316\325!\210\316\326!\210\316A!\210\316\327!\210\316\330!\210\316@!\210\316\327!\210\316\331!\210\316\332!\210\316\333!\210\316\323\324!!\210\316\334!\210\3356!\210+@8A\336\337!\203$	9r\306\307!q\210p\310 \2109\311\211\312\211\31245\313 \210\314\315!\210+\211:7\316\340!\210\341>\203\311\316!\210\202\326\316\342!\210\316!\210\316\343!\210\316\344!\210\316\345!\210\316\322!\210\316\323\324!!\210\316\346!\210\316\347!\210\350>\204\373\316\343!\210\316!\210\316\327!\210\316\331!\210\316\351!\210\316\333!\210\316\323\324!!\210\316\334!\210\335:!\210+;\352\353\354\"\210\352\355\356\"\210\357<\236\204<\360<\361\"<\362\363!\207" [lazy-lock-defer-time default-directory #:old-dir buffer-read-only buffer-file-name buffer-undo-list get-buffer-create "*Help*" kill-all-local-variables nil t erase-buffer run-hooks temp-buffer-setup-hook princ "The value of the variable `lazy-lock-defer-time' was\n " "\n" "This variable cannot now be a list of modes and time,\n" "so instead use " substitute-command-keys "\\[customize-option]" " to modify the variables, or put the forms:\n" " (setq lazy-lock-defer-time " ")\n" " (setq lazy-lock-defer-on-the-fly '" "in your ~/.emacs.  " "The above forms have been evaluated for this editor session,\n" "but you should use " " or change your ~/.emacs now." internal-temp-output-buffer-show boundp lazy-lock-defer-driven "The value of the variable `lazy-lock-defer-driven' is set to " (nil t) "`" "'" ".\n" "This variable is now called `lazy-lock-defer-on-scrolling',\n" " to modify the variable, or put the form:\n" " (setq lazy-lock-defer-on-scrolling " (nil t) "The above form has been evaluated for this editor session,\n" add-hook window-size-change-functions lazy-lock-fontify-after-resize redisplay-end-trigger-functions lazy-lock-fontify-after-trigger lazy-lock-mode append ((lazy-lock-mode nil)) provide lazy-lock inhibit-modification-hooks inhibit-read-only #:buf standard-output lazy-lock-defer-on-the-fly #:old-dir #:buf lazy-lock-defer-on-scrolling minor-mode-alist] 4)

MMCT - 2023