Server IP : 111.118.215.189 / Your IP : 18.117.158.174 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/textmodes/ |
[ Home ] | [ C0mmand ] | [ Upload File ] |
---|
;ELC ;;; Compiled by mockbuild@buildfarm06-new.corp.cloudlinux.com on Fri Oct 11 10:11:47 2024 ;;; from file /builddir/build/BUILD/emacs-24.3/lisp/textmodes/flyspell.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\307\310\311\312\301\312\313&\210\314\315\316\317\312\303\320\321&\210\314\322\316\323\312\303\320\321&\210\314\324\325\326\312\303\320\327\330\331& \210\314\332\304\333\312\303\330\334\320\321& \210\314\335\336\337\312\303\330\334\320\340& \210\314\341\342\343\312\303\320\344&\210\314\345\316\346\312\303\320\321&\210\314\347\316\350\312\303\320\321&\210\314\351\352\353\312\303\330\334\320\354& \210\314\355\304\356\312\303\320\357&\210\314\360\361\362\312\303\330\334\320\363& \210\314\364\304\365\312\303\330\334\320\366& \210\314\367\316\370\312\303\320\321&\210\314\371\316\372\312\303\320\321&\210\314\373\304\374\312\303\330\334\320\375& \210\314\376\304\377\312\303\330\334\320\201@ & \210\314\201A \201B \201C \312\303\330\334\320\201D & \210\314\201E \304\201F \312\303\320\321&\210\314\201G \201H \201I \312\303\330\334\320\201J & \210\314\201K \304\201L \312\303\330\334\320\321& \210\314\201M \304\201N \312\303\330\334\320\321& \210\314\201O \201P \201Q \312\303\320\201R &\210\314\201S \201T \201U \312\303\330\334\320\201V & \210\314\201W \201X \201Y \312\303\320\201Z &\210\314\201[ \304\201\\ \312\303\320\201] &\210\314\201^ \304\201_ \312\303\320\201` &\210\314\201a \316\201b \312\303\320\321\201c \201d \201e \201f &\210\314\201g \201h \201i \312\303%\207" [require ispell custom-declare-group flyspell nil "Spell checking on the fly." :tag "FlySpell" :prefix "flyspell-" :group processes custom-declare-variable flyspell-highlight-flag t "How Flyspell should indicate misspelled words.\nNon-nil means use highlight, nil means use minibuffer messages." :type boolean flyspell-mark-duplications-flag "Non-nil means Flyspell reports a repeated word as an error.\nSee `flyspell-mark-duplications-exceptions' to add exceptions to this rule.\nDetection of repeated words is not implemented in\n\"large\" regions; see `flyspell-large-region'." flyspell-mark-duplications-exceptions '((nil "that" "had") ("\\`francais" "nous" "vous")) "A list of exceptions for duplicated words.\nIt should be a list of (LANGUAGE . EXCEPTION-LIST).\n\nLANGUAGE is nil, which means the exceptions apply regardless of\nthe current dictionary, or a regular expression matching the\ndictionary name (`ispell-local-dictionary' or\n`ispell-dictionary') for which the exceptions should apply.\n\nEXCEPTION-LIST is a list of strings. The checked word is\ndowncased before comparing with these exceptions." (alist :key-type (choice (const :tag "All dictionaries" nil) string) :value-type (repeat string)) :version "24.1" flyspell-sort-corrections "Non-nil means, sort the corrections alphabetically before popping them." "21.1" flyspell-duplicate-distance -1 "The maximum distance for finding duplicates of unrecognized words.\nThis applies to the feature that when a word is not found in the dictionary,\nif the same spelling occurs elsewhere in the buffer,\nFlyspell uses a different face (`flyspell-duplicate') to highlight it.\nThis variable specifies how far to search to find such a duplicate.\n-1 means no limit (search the whole buffer).\n0 means do not search for duplicate unrecognized spellings." (choice (const :tag "no limit" -1) number) flyspell-delay 3 "The number of seconds to wait before checking, after a \"delayed\" command." number flyspell-persistent-highlight "Non-nil means misspelled words remain highlighted until corrected.\nIf this variable is nil, only the most recently detected misspelled word\nis highlighted." flyspell-highlight-properties "Non-nil means highlight incorrect words even if a property exists for this word." flyspell-default-delayed-commands '(self-insert-command delete-backward-char backward-or-forward-delete-char delete-char scrollbar-vertical-drag backward-delete-char-untabify) "The standard list of delayed commands for Flyspell.\nSee `flyspell-delayed-commands'." (repeat (symbol)) flyspell-delayed-commands "List of commands that are \"delayed\" for Flyspell mode.\nAfter these commands, Flyspell checking is delayed for a short time,\nwhose length is specified by `flyspell-delay'." (repeat (symbol)) flyspell-default-deplacement-commands '(next-line previous-line handle-switch-frame handle-select-window scroll-up scroll-down) "The standard list of deplacement commands for Flyspell.\nSee `flyspell-deplacement-commands'." (repeat (symbol)) flyspell-deplacement-commands "List of commands that are \"deplacement\" for Flyspell mode.\nAfter these commands, Flyspell checking is performed only if the previous\ncommand was not the very same command." (repeat (symbol)) flyspell-issue-welcome-flag "Non-nil means that Flyspell should display a welcome message when started." flyspell-issue-message-flag "Non-nil means that Flyspell emits messages when checking words." flyspell-incorrect-hook "List of functions to be called when incorrect words are encountered.\nEach function is given three arguments. The first two\narguments are the beginning and the end of the incorrect region.\nThe third is either the symbol `doublon' or the list\nof possible corrections as returned by `ispell-parse-output'.\n\nIf any of the functions return non-nil, the word is not highlighted as\nincorrect." hook flyspell-default-dictionary "A string that is the name of the default dictionary.\nThis is passed to the `ispell-change-dictionary' when flyspell is started.\nIf the variable `ispell-local-dictionary' or `ispell-dictionary' is non-nil\nwhen flyspell is started, the value of that variable is used instead\nof `flyspell-default-dictionary' to select the default dictionary.\nOtherwise, if `flyspell-default-dictionary' is nil, it means to use\nIspell's ultimate default dictionary." (choice string (const :tag "Default" nil)) flyspell-tex-command-regexp "\\(\\(begin\\|end\\)[ ]*{\\|\\(cite[a-z*]*\\|label\\|ref\\|eqref\\|usepackage\\|documentclass\\)[ ]*\\(\\[[^]]*\\]\\)?{[^{}]*\\)" "A string that is the regular expression that matches TeX commands." string flyspell-check-tex-math-command "Non-nil means check even inside TeX math environment.\nTeX math environments are discovered by `texmathp', implemented\ninside AUCTeX package. That package may be found at\nURL `http://www.gnu.org/software/auctex/'" flyspell-dictionaries-that-consider-dash-as-word-delimiter '("francais" "deutsch8" "norsk") "List of dictionary names that consider `-' as word delimiter." (repeat (string)) flyspell-abbrev-p "If non-nil, add correction to abbreviation table." flyspell-use-global-abbrev-table-p "If non-nil, prefer global abbrev table to local abbrev table." flyspell-mode-line-string " Fly" "String displayed on the mode line when flyspell is active.\nSet this to nil if you don't want a mode line indicator." (choice string (const :tag "None" nil)) flyspell-large-region 1000 "The threshold that determines if a region is small.\nIf the region is smaller than this number of characters,\n`flyspell-region' checks the words sequentially using regular\nflyspell methods. Else, if the region is large, a new Ispell process is\nspawned for speed.\n\nDoubled words are not detected in a large region, because Ispell\ndoes not check for them.\n\nIf this variable is nil, all regions are treated as small." (choice number (const :tag "All small" nil)) flyspell-insert-function #'insert "Function for inserting word by flyspell upon correction." function flyspell-before-incorrect-word-string "String used to indicate an incorrect word starting." (choice string (const nil)) flyspell-after-incorrect-word-string "String used to indicate an incorrect word ending." (choice string (const nil)) flyspell-use-meta-tab "Non-nil means that flyspell uses M-TAB to correct word." :initialize custom-initialize-default :set #[(sym val) "\303\304 \nL\205\n \305#\207" [flyspell-mode-map sym val define-key "\211" flyspell-auto-correct-word] 5] flyspell-auto-correct-binding [(control 59)] "The key binding for flyspell auto correction."] 12) #@234 Function providing per-mode customization over which words are flyspelled. Returns t to continue checking, nil otherwise. Flyspell mode sets this variable to whatever is the `flyspell-mode-predicate' property of the major mode name. (defvar flyspell-generic-check-word-predicate nil (#$ . 8489)) (byte-code "\300\301!\210\302\303\301\"\210\304\305\306\307#\210\304\310\306\307#\207" [make-variable-buffer-local flyspell-generic-check-word-predicate defvaralias flyspell-generic-check-word-p put mail-mode flyspell-mode-predicate mail-mode-flyspell-verify message-mode] 4) #@73 Function used for `flyspell-generic-check-word-predicate' in Mail mode. (defalias 'mail-mode-flyspell-verify #[nil "\212eb\210\304\305\306!\307Q\310\311#\210`)\312\301!\204 d\202'