| Server IP : 217.160.0.212 / Your IP : 216.73.216.141 Web Server : Apache System : Linux www 6.18.51-i1-ampere #1196 SMP Fri Sep 11 20:43:55 CEST 2026 aarch64 User : sws1073854427 ( 1073854427) PHP Version : 8.4.23 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /usr/share/emacs/28.2/lisp/ |
Upload File : |
;ELC
;;; Compiled
;;; in Emacs version 28.2
;;; with all optimizations.
(byte-code "\300\301!\210\302\303\304\"\207" [require cl-lib add-to-list customize-package-emacs-version-alist (so-long ("1.0" . "27.1") ("1.1" . "28.1"))] 3)
(defconst so-long--latest-version "1.1.2")
#@72 Internal use. Non-nil when any `so-long' functionality has been used.
(defvar so-long-enabled nil (#$ . 286))
#@51 Non-nil when `so-long' mitigations are in effect.
(defvar so-long--active nil (#$ . 403))
(make-variable-buffer-local 'so-long--active)
#@45 Non-nil while `set-auto-mode' is executing.
(defvar so-long--set-auto-mode nil (#$ . 545))
#@71 Non-nil to prevent `hack-local-variables' applying a `mode' variable.
(defvar so-long--hack-local-variables-no-mode nil (#$ . 642))
#@75 When non-nil, prevents the `set-auto-mode' advice from calling `so-long'.
(defvar so-long--inhibited nil (#$ . 780))
(byte-code "\300\301!\210\302\301\303\304#\207" [make-variable-buffer-local so-long--inhibited put permanent-local t] 4)
#@59 Non-nil while `so-long' or `so-long-revert' is executing.
(defvar so-long--calling nil (#$ . 1024))
#@72 Non-nil if `so-long' has been invoked (even if subsequently reverted).
(defvar so-long-detected-p nil (#$ . 1130))
(byte-code "\300\301!\210\302\301\303\304#\210\305\306\307\310\311\312\313\314&\210\315\316\317\320\321DD\322\323\324\325\326&\210\315\327\317\320\330DD\331\323\332\325\333&\210\315\334\317\320\335DD\336\323\337\325\340&\210\315\341\317\320\342DD\343\323\344\325\345&\210\315\346\317\320\347DD\350\323\351\325\352&\210\315\353\317\320\354DD\355\323\356\325\357&\207" [make-variable-buffer-local so-long-detected-p put permanent-local t custom-declare-group so-long nil "Prevent unacceptable performance degradation with very long lines." :prefix "so-long" :group convenience custom-declare-variable so-long-threshold funcall function #[0 "\300\207" [10000] 1 #1=""] "Maximum line length permitted before invoking `so-long-function'.\n\nLine length is counted in either bytes or characters, depending on\n`so-long-predicate'.\n\nThis is the only variable used to determine the presence of long lines if\nthe `so-long-predicate' function is `so-long-statistics-excessive-p'." :type integer :package-version (so-long . "1.1") so-long-max-lines #[0 "\300\207" [500] 1 #1#] "Number of non-blank, non-comment lines to test for excessive length.\n\nThis option normally has no effect in Emacs versions >= 28.1, as the default\n`so-long-predicate' sees the entire buffer. Older versions of Emacs still make\nuse of this option.\n\nIf nil then all lines will be tested, until either a long line is detected,\nor the end of the buffer is reached.\n\nIf `so-long-skip-leading-comments' is nil then comments and blank lines will\nbe counted.\n\nSee `so-long-detected-long-line-p' for details." (choice (integer :tag "Limit") (const :tag "Unlimited" nil)) (so-long . "1.1") so-long-skip-leading-comments #[0 "\300\207" [t] 1 #1#] "Non-nil to ignore all leading comments and whitespace.\n\nThis option normally has no effect in Emacs versions >= 28.1, as the default\n`so-long-predicate' sees the entire buffer. Older versions of Emacs still make\nuse of this option.\n\nIf the file begins with a shebang (#!), this option also causes that line to be\nignored even if it doesn't match the buffer's comment syntax, to ensure that\ncomments following the shebang will be ignored.\n\nSee `so-long-detected-long-line-p' for details." boolean (so-long . "1.0") so-long-target-modes #[0 "\300\207" [(prog-mode css-mode sgml-mode nxml-mode fundamental-mode)] 1 #1#] "`global-so-long-mode' affects only these modes and their derivatives.\n\nOur primary use-case is minified programming code, so `prog-mode' covers\nmost cases, but there are some exceptions to this.\n\nIf t, then all modes are targeted. Note that this is only useful with a\ncustom `so-long-predicate', as many file types (archives and binary files,\nfor example) can safely contain long lines, and invoking `so-long' on such\nfiles would prevent Emacs from handling them correctly." (choice (repeat :tag "Specified modes" symbol) (const :tag "All modes" t)) (so-long . "1.1") so-long-invisible-buffer-function #[0 "\300\207" [so-long-deferred] 1 #1#] "Function called in place of `so-long' when the buffer is not displayed.\n\nThis affects the behavior of `global-so-long-mode'.\n\nWe treat invisible buffers differently from displayed buffers because, in\ncases where a library is using a buffer for behind-the-scenes processing,\nit might be surprising if that buffer were unexpectedly manipulated by\n`so-long' (which might in turn lead to confusing errors for the user).\nInvisible buffers are less likely to cause performance issues related to\nlong lines, so this differentiation is generally satisfactory.\n\nThe default value `so-long-deferred' prevents `global-so-long-mode' from\ntriggering `so-long' for any given buffer until such time as the buffer is\ndisplayed in a window.\n\n(Note that buffers are normally invisible at this point -- when `find-file'\nis used, the buffer is not displayed in a window until a short time after\n`global-so-long-mode' has seen it.)\n\nThe value nil or `so-long' means that `so-long' will be called directly; in\nwhich case it may be problematic for `so-long-variable-overrides' to enable\n`buffer-read-only', or for `so-long-action' to be set to `so-long-mode'.\nThis is because the buffer may not be intended to be displayed at all, and\nthe mentioned options might interfere with some intended processing." (radio (const so-long-deferred) (const :tag "nil: Call so-long as normal" nil) (function :tag "Custom function")) (so-long . "1.0") so-long-predicate #[0 "\300\301!\203 \302\207\303\207" [fboundp buffer-line-statistics so-long-statistics-excessive-p so-long-detected-long-line-p] 2 #1#] "Function called after `set-auto-mode' to decide whether action is needed.\n\nThis affects the behavior of `global-so-long-mode'.\n\nOnly called if the major mode is a member of `so-long-target-modes'.\n\nThe specified function will be called with no arguments. If it returns non-nil\nthen `so-long' will be invoked.\n\nDefaults to `so-long-statistics-excessive-p' starting from Emacs 28.1, or\n`so-long-detected-long-line-p' in earlier versions.\n\nNote that `so-long-statistics-excessive-p' requires Emacs 28.1 or later." (radio (const so-long-statistics-excessive-p) (const so-long-detected-long-line-p) (function :tag "Custom function")) (so-long . "1.1")] 8)
#@72 Generate a :type for `so-long-action' based on `so-long-action-alist'.
(defalias 'so-long--action-type #[0 "\301\302\303\304\305\306\"\"\307\"B\207" [so-long-action-alist radio append mapcar #[257 "\300\301A@@F\207" [const :tag] 5 "\n\n(fn X)"] assq-delete-all nil ((const :tag "Do nothing" nil))] 7 (#$ . 6517)])
#@76 The customize :set function for `so-long-action-alist'.
(fn OPTION VALUE)
(defalias 'so-long--action-alist-setter #[514 "\300\"\210\301\302\303\304 #\207" [set-default put so-long-action custom-type so-long--action-type] 6 (#$ . 6840)])
(byte-code "\300\301\302\303\304DD\305\306\307\310\311\312\313& \210\314\301\315\316#\210\300\317\302\303\320DD\321\306\322 \312\323&\207" [custom-declare-variable so-long-action-alist funcall function #[0 "\300\207" [((so-long-mode "Change major mode to so-long-mode" so-long-mode so-long-mode-revert) (so-long-minor-mode "Enable so-long-minor-mode" turn-on-so-long-minor-mode turn-off-so-long-minor-mode) (longlines-mode "Enable longlines-mode" so-long-function-longlines-mode so-long-revert-function-longlines-mode))] 1 #1=""] "Options for `so-long-action'.\n\nEach element is a list comprising (KEY LABEL ACTION REVERT)\n\nKEY is a symbol which is a valid value for `so-long-action', and LABEL is a\nstring which describes and represents the key in that option's customize\ninterface, and in the \"So Long\" menu. ACTION and REVERT are functions:\n\nACTION will be the `so-long-function' value when `so-long' is called, and\nREVERT will be the `so-long-revert-function' value, if `so-long-revert' is\nsubsequently called." :type (alist :key-type (symbol :tag "Key" :value <action>) :value-type (list (string :tag "Label" :value "<description>") (function :tag "Action") (function :tag "Revert"))) :set so-long--action-alist-setter :package-version (so-long . "1.0") put risky-local-variable t so-long-action #[0 "\300\207" [so-long-mode] 1 #1#] "The action taken by `so-long' when long lines are detected.\n\n(Long lines are determined by `so-long-predicate' after `set-auto-mode'.)\n\nThe value is a key to one of the options defined by `so-long-action-alist'.\n\nThe default action is to replace the original major mode with `so-long-mode'.\nAlternatively, the `so-long-minor-mode' action retains the original major mode\nwhile still disabling minor modes and overriding variables. These are the only\nstandard values for which `so-long-minor-modes' and `so-long-variable-overrides'\nwill be automatically processed; but custom actions can also do these things.\n\nThe value `longlines-mode' causes that minor mode to be enabled. See\nlonglines.el for more details.\n\nEach action likewise determines the behavior of `so-long-revert'.\n\nIf the value is nil, or not defined in `so-long-action-alist', then no action\nwill be taken." so-long--action-type (so-long . "1.0")] 10)
#@270 The function called by `so-long'.
This should be set in conjunction with `so-long-revert-function'. This usually
happens automatically, based on the value of `so-long-action'.
The specified function will be called with no arguments, after which
`so-long-hook' runs.
(defvar so-long-function nil (#$ . 9374))
(byte-code "\300\301!\210\302\301\303\304#\207" [make-variable-buffer-local so-long-function put permanent-local t] 4)
#@277 The function called by `so-long-revert'.
This should be set in conjunction with `so-long-function'. This usually
happens automatically, based on the value of `so-long-action'.
The specified function will be called with no arguments, after which
`so-long-revert-hook' runs.
(defvar so-long-revert-function nil (#$ . 9811))
(byte-code "\300\301!\210\302\301\303\304#\207" [make-variable-buffer-local so-long-revert-function put permanent-local t] 4)
#@165 The value of `so-long-function', else derive from `so-long-action'.
If ACTION-ARG is provided, it is used in place of `so-long-action'.
(fn &optional ACTION-ARG)
(defalias 'so-long-function #[256 "\206 \211\204 \211\262\205 \211\n\236\3038\262\207" [so-long-function so-long-action so-long-action-alist 2] 4 (#$ . 10269)])
#@172 The value of `so-long-revert-function', else derive from `so-long-action'.
If ACTION-ARG is provided, it is used in place of `so-long-action'.
(fn &optional ACTION-ARG)
(defalias 'so-long-revert-function #[256 "\206 \211\204 \211\262\205 \211\n\236\3038\262\207" [so-long-revert-function so-long-action so-long-action-alist 3] 4 (#$ . 10609)])
(byte-code "\300\301\302\303\304DD\305\306\307\310\311&\210\312\301!\210\313\314!\204 \315\314\316\"\210\300\207" [custom-declare-variable so-long-file-local-mode-function funcall function #[0 "\300\207" [so-long-mode-downgrade] 1 ""] "Function to call during `set-auto-mode' when a file-local mode is set.\n\nThis affects the behavior of `global-so-long-mode'.\n\nThe specified function will be called with a single argument, being the\nfile-local mode which was established.\n\nThis happens before `so-long' is called, and so this function can modify the\nsubsequent action.\n\nThe value `so-long-mode-downgrade' means `so-long-minor-mode' will be used in\nplace of `so-long-mode' -- therefore respecting the file-local mode value, yet\nstill overriding minor modes and variables (as if `so-long-action' had been set\nto `so-long-minor-mode').\n\nThe value `so-long-inhibit' means that `global-so-long-mode' will not take any\naction at all for this file.\n\nIf nil, then do not treat files with file-local modes any differently to other\nfiles.\n\nNote that this function is called if a file-local mode is set even if `so-long'\nwill not be called, and also if the file-local mode is `so-long-mode'. Custom\nfunctions may need to test for these cases -- see `so-long-mode-downgrade' for\nan example." :type (radio (const so-long-mode-downgrade) (const so-long-inhibit) (const :tag "nil: Use so-long-function as normal" nil) (function :tag "Custom function")) :package-version (so-long . "1.0") make-variable-buffer-local fboundp provided-mode-derived-p defalias #[385 ">\204 \300N\211\262\204 \207" [derived-mode-parent] 4 "Non-nil if MODE is derived from one of MODES.\nUses the `derived-mode-parent' property of the symbol to trace backwards.\nIf you just want to check `major-mode', use `derived-mode-p'.\n\n(fn MODE &rest MODES)"]] 8)
#@166 Wrapper for calling `so-long-file-local-mode-function'.
The function is called with one argument, MODE, being the file-local mode which
was established.
(fn MODE)
(defalias 'so-long-handle-file-local-mode #[257 "\302\303\"\203 \304 \205 !\207" [so-long--inhibited so-long-file-local-mode-function provided-mode-derived-p so-long-mode t] 4 (#$ . 12822)])
(byte-code "\300\301\302\303\304DD\305\306\307\310\311&\210\300\312\302\303\313DD\314\306\315\316\317\310\320& \210\300\321\302\303\322DD\323\306\324\310\325&\210\300\326\302\303\327DD\330\306\331\310\332&\210\300\333\302\303\334DD\335\306\336\310\337&\210\300\340\302\303\341DD\342\306\336\310\343&\210\300\344\302\303\345DD\346\306\347\310\350&\210\351\352\353\354\310\355%\210\351\356\357\360\310\361%\207" [custom-declare-variable so-long-minor-modes funcall function #[0 "\300\207" [(font-lock-mode display-line-numbers-mode flymake-mode flyspell-mode glasses-mode goto-address-mode goto-address-prog-mode hi-lock-mode highlight-changes-mode hl-line-mode linum-mode nlinum-mode prettify-symbols-mode visual-line-mode whitespace-mode diff-hl-amend-mode diff-hl-flydiff-mode diff-hl-mode dtrt-indent-mode flycheck-mode hl-sexp-mode idle-highlight-mode rainbow-delimiters-mode smartparens-mode smartparens-strict-mode)] 1 #1=""] "List of buffer-local minor modes to explicitly disable.\n\nThe ones which were originally enabled in the buffer are disabled by calling\nthem with the numeric argument 0. Unknown modes, and modes which were not\nenabled, are ignored.\n\nThis happens after any globalized minor modes have acted, so that buffer-local\nmodes controlled by globalized modes can also be targeted.\n\nBy default this happens if `so-long-action' is set to either `so-long-mode'\nor `so-long-minor-mode'. If `so-long-revert' is subsequently invoked, then the\ndisabled modes are re-enabled by calling them with the numeric argument 1.\n\n`so-long-hook' can be used where more custom behavior is desired.\n\nPlease submit bug reports to recommend additional modes for this list, whether\nthey are in Emacs core, GNU ELPA, or elsewhere." :type (repeat symbol) :package-version (so-long . "1.1") so-long-variable-overrides #[0 "\300\207" [((bidi-inhibit-bpa . t) (bidi-paragraph-direction . left-to-right) (buffer-read-only . t) (global-hl-line-mode) (line-move-visual . t) (show-paren-mode) (truncate-lines) (which-func-mode))] 1 #1#] "Variables to override, and the values to override them with.\n\nThe variables are given buffer-local values. By default this happens if\n`so-long-action' is set to either `so-long-mode' or `so-long-minor-mode'.\n\nIf `so-long-revert' is subsequently invoked, then the variables are restored\nto their original states.\n\nThe combination of `line-move-visual' (enabled) and `truncate-lines' (disabled)\nis important for maximising responsiveness when moving vertically within an\nextremely long line, as otherwise the full length of the line may need to be\nscanned to find the next position.\n\nBidirectional text display -- especially handling the large quantities of\nnested parentheses which are liable to occur in minified programming code --\ncan be very expensive for extremely long lines, and so this support is disabled\nby default (insofar as is supported; in particular `bidi-inhibit-bpa' is not\navailable in Emacs versions < 27). For more information refer to info node\n`(emacs) Bidirectional Editing' and info node `(elisp) Bidirectional Display'.\n\nBuffers are made read-only by default to prevent potentially-slow editing from\noccurring inadvertently, as buffers with excessively long lines are likely not\nintended to be edited manually." (alist :key-type (variable :tag "Variable") :value-type (sexp :tag "Value")) :options ((bidi-inhibit-bpa boolean) (bidi-paragraph-direction (choice (const left-to-right) (const right-to-left) (const nil))) (buffer-read-only boolean) (global-hl-line-mode boolean) (line-move-visual boolean) (show-paren-mode boolean) (truncate-lines boolean) (which-func-mode boolean)) (so-long . "1.0") so-long-mode-preserved-minor-modes #[0 "\300\207" [(view-mode)] 1 #1#] "List of buffer-local minor modes to preserve in `so-long-mode'.\n\nThese will be enabled or disabled after switching to `so-long-mode' (by calling\nthem with the numeric argument 1 or 0) in accordance with their state in the\nbuffer's original major mode. Unknown modes, and modes which are already in the\ndesired state, are ignored.\n\nThis happens before `so-long-variable-overrides' and `so-long-minor-modes'\nhave been processed.\n\nBy default this happens only if `so-long-action' is set to `so-long-mode'.\nIf `so-long-revert' is subsequently invoked, then the modes are again set\nto their original state after the original major mode has been called.\n\nSee also `so-long-mode-preserved-variables' (processed after this)." (repeat symbol) (so-long . "1.1") so-long-mode-preserved-variables #[0 "\300\207" [(view-old-buffer-read-only)] 1 #1#] "List of buffer-local variables to preserve in `so-long-mode'.\n\nThe original value of each variable will be maintained after switching to\n`so-long-mode'. Unknown variables are ignored.\n\nThis happens before `so-long-variable-overrides' and `so-long-minor-modes'\nhave been processed.\n\nBy default this happens only if `so-long-action' is set to `so-long-mode'.\nIf `so-long-revert' is subsequently invoked, then the variables are again\nset to their original values after the original major mode has been called.\n\nSee also `so-long-mode-preserved-minor-modes' (processed before this)." (repeat variable) (so-long . "1.1") so-long-hook #[0 "\300\207" [nil] 1 #1#] "List of functions to call after `so-long' is called.\n\nSee also `so-long-revert-hook'." hook (so-long . "1.0") so-long-revert-hook #[0 "\300\207" [nil] 1 #1#] "List of functions to call after `so-long-revert' is called.\n\nSee also `so-long-hook'." (so-long . "1.0") so-long-mode-line-label #[0 "\300\207" ["So Long"] 1 #1#] "Text label of `so-long-mode-line-info' when long lines are detected.\n\nIf nil, no mode line indicator will be displayed." (choice (string :tag "String") (const :tag "None" nil)) (so-long . "1.0") custom-declare-face so-long-mode-line-active ((t :inherit mode-line-emphasis)) "Face for the mode line construct when mitigations are active.\n\nApplied to `mode-name' in the `so-long-mode' major mode, and to\n`so-long-mode-line-label' otherwise (for non-major-mode actions).\n\nSee also `so-long-mode-line-info'." (so-long . "1.0") so-long-mode-line-inactive ((t :inherit mode-line-inactive)) "Face for `so-long-mode-line-info' when mitigations have been reverted." (so-long . "1.0")] 10)
#@409 Alist holding the buffer's original `major-mode' value, and other data.
Any values to be restored by `so-long-revert' can be stored here by the
`so-long-function' or during `so-long-hook'. `so-long' itself stores the
original states for `so-long-variable-overrides' and `so-long-minor-modes',
so these values are available to custom actions by default.
See also `so-long-remember' and `so-long-original'.
(defvar so-long-original-values nil (#$ . 19497))
(byte-code "\300\301!\210\302\301\303\304#\207" [make-variable-buffer-local so-long-original-values put permanent-local t] 4)
#@302 Return the current value for KEY in `so-long-original-values'.
If you need to differentiate between a stored value of nil and no stored value
at all, make EXISTS non-nil. This then returns the result of `assq' directly:
nil if no value was set, and a cons cell otherwise.
(fn KEY &optional EXISTS)
(defalias 'so-long-original #[513 "\211\203 \236\207\236A@\207" [so-long-original-values] 4 (#$ . 20088)])
#@166 Store the value of VARIABLE in `so-long-original-values'.
We additionally store a boolean value which indicates whether that value was
buffer-local.
(fn VARIABLE)
(defalias 'so-long-remember #[257 "\301!\205 \302\"\211J\303!EB\211\207" [so-long-original-values boundp assq-delete-all local-variable-p] 5 (#$ . 20508)])
#@471 Remember the current variable and minor mode values.
Stores the existing value for each entry in `so-long-variable-overrides'.
Stores the name of each enabled mode from the list `so-long-minor-modes'.
The lists themselves are also remembered, so that major mode hooks can
provide buffer-local modifications which are still accessible after changing
to `so-long-mode'.
If RESET is non-nil, remove any existing values before storing the new ones.
(fn &optional RESET)
(defalias 'so-long-remember-all #[256 "\211\203 \305\306\301!\210\306\302!\210\306\303!\210\306\304!\210 \211\203) \211@\306@!\210A\266\202\202 \210\n\211\203F \211@\307!\203? \211\203? \306!\210A\266\202\202+ \210\211\203Y \211@\306!\210A\266\202\202H \210\f\211\205v \211@\307!\203o \211\203o \306!\210A\266\202\202[ \207" [so-long-original-values so-long-variable-overrides so-long-minor-modes so-long-mode-preserved-variables so-long-mode-preserved-minor-modes nil so-long-remember boundp] 5 (#$ . 20845)])
#@42 Dynamically generate the "So Long" menu.
(defalias 'so-long-menu #[0 "\302\303!\302\304!\305\306\307#\210\305\310\311#\210 \211\203| \211@\211G\312U\203+ \211A\262\242\2022 \313\314\315GD\"\211A\262\242\211A\262\242\242\305\316!\317\320\321!\322\323\324
\"\325#\210\211\262\326\327\330\331\332\333
D\334BB\332\333
D\335BBFD\257#\266A\266\202\202 \210\305\336\337#\210\305\340\317\304E#\210\305\341\342#\210\305\343\344#\210)\207" [help-map so-long-action-alist make-sparse-keymap "So Long" "Help" define-key-after [so-long-revert] (menu-item "Revert to normal" so-long-revert :enable (and so-long-revert-function so-long--active)) [so-long-actions-separator] (menu-item "--") 4 signal wrong-number-of-arguments (key label actionfunc revertfunc) vector menu-item make-symbol "so-long-menu-item-replace-action" defalias make-closure #[0 "\301\300!\207" [V0 so-long] 2 nil "@"] "Revert the current action and invoke the chosen replacement.\n\nThis command calls `so-long' with the selected action as an argument." :enable not and so-long--active eq quote (so-long-function) (so-long-revert-function) [so-long-help-separator] (menu-item "--") [so-long-help] [so-long-commentary] (menu-item "Commentary" so-long-commentary) [so-long-customize] (menu-item "Customize" so-long-customize)] 22 (#$ . 21846)])
#@63 View the `so-long' library's documentation in `outline-mode'.
(defalias 'so-long-commentary #[0 "\302\303\304!!\203\f \305\304!\210\306\307!\210\310K\311\312\"\216\310\313M\210\314\315!\210)\210\316\317\320!\2030 \321\322!\210\2026 \323c\210\324y\210\212\325\326\327\330#\203F \321\331!\210\2027 *\332\304!\210\333 \210\334\324!\210\335 \336\337\340#\210\336\341\340#\210\336\342\343#\210\336\344\345#\210\346\347 \"\210\350!\266\351 \210\327\352 )\207" [inhibit-read-only so-long-action buffer-live-p get-buffer "*So Long: Commentary*" kill-buffer require finder finder-summary make-closure #[0 "\301\300M\207" [V0 finder-summary] 2] ignore finder-commentary "so-long" t looking-at "^Commentary:\n\n" replace-match "so-long.el\n\n" "so-long.el\n" 1 re-search-forward "^-+$" nil :noerror "" rename-buffer outline-mode view-mode make-sparse-keymap define-key " " outline-toggle-children [M-tab] [134217838] outline-next-visible-heading [134217840] outline-previous-visible-heading set-keymap-parent current-local-map use-local-map so-long--ensure-enabled so-long] 5 (#$ . 23184) nil])
#@41 Open the customization group `so-long'.
(defalias 'so-long-customize #[0 "\300\301!\207" [customize-group so-long] 2 (#$ . 24284) nil])
#@424 Mode line construct displayed when `so-long' has been triggered.
Displayed as part of `mode-line-misc-info'.
`so-long-mode-line-label' defines the text to be displayed (if any).
Face `so-long-mode-line-active' is used while mitigations are active, and
`so-long-mode-line-inactive' is used if `so-long-revert' is called.
Not displayed when `so-long-mode' is enabled, as the major mode construct
serves the same purpose.
(defvar so-long-mode-line-info nil (#$ . 24427))
(byte-code "\300\301!\210\302\301\303\304#\207" [make-variable-buffer-local so-long-mode-line-info put risky-local-variable t] 4)
#@71 Return the mode line construct for variable `so-long-mode-line-info'.
(defalias 'so-long-mode-line-info #[0 "\300 \301\302\303\304\305\306\307\257#\210\310\304\311\312\310\313\314\315\316 D\317BBBBBBD\320BBD\207" [make-sparse-keymap define-key [mode-line down-mouse-1] menu-item "" nil :filter #[257 "\300 \207" [so-long-menu] 2 "\n\n(fn CMD)"] so-long-mode-line-label :eval propertize 'mouse-face 'highlight 'keymap quote ('help-echo t 'face (if so-long--active 'so-long-mode-line-active 'so-long-mode-line-inactive)) (" ")] 11 (#$ . 25035)])
#@379 Non-nil if the buffer contains a line longer than `so-long-threshold' bytes.
This uses `buffer-line-statistics' (available from Emacs 28.1) to establish the
longest line in the buffer (counted in bytes rather than characters).
This is the default value of `so-long-predicate' in Emacs versions >= 28.1.
(In earlier versions `so-long-detected-long-line-p' is used by default.)
(defalias 'so-long-statistics-excessive-p #[0 "\301 A@V\207" [so-long-threshold buffer-line-statistics] 2 (#$ . 25589)])
#@789 Determine whether the current buffer contains long lines.
Following any initial comments and blank lines, the next N lines of the buffer
will be tested for excessive length (where "excessive" means greater than
`so-long-threshold' characters, and N is `so-long-max-lines').
Returns non-nil if any such excessive-length line is detected.
If `so-long-skip-leading-comments' is nil then the N lines will be counted
starting from the first line of the buffer. In this instance you will likely
want to increase `so-long-max-lines' to allow for possible comments.
This is the default `so-long-predicate' function in Emacs versions < 28.1.
(Starting from 28.1, the default and recommended predicate function is
`so-long-statistics-excessive-p', which is faster and sees the entire buffer.)
(defalias 'so-long-detected-long-line-p #[0 "\306\307\212eb\210\203N \204 \n\203N \203N \310\311!\203 \312y\210`\262\214\211`\f\\d^}\210\211b\210\313\312!\206@ m\205@ ~\210\211b\210\313\312!`\262)\204\"