mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-15 10:30:25 -08:00
; Fix typos in symbol names
This commit is contained in:
parent
5c12e988ab
commit
9364c28959
16 changed files with 18 additions and 19 deletions
|
|
@ -146,7 +146,7 @@ Names should be as they appear in loaddefs.el.")
|
|||
|
||||
(defvar cus-test-errors nil
|
||||
"List of problematic variables found by `cus-test-apropos'.
|
||||
Each element is (VARIABLE . PROBLEM); see `cus-test--format-errors'.")
|
||||
Each element is (VARIABLE . PROBLEM); see `cus-test--format-error'.")
|
||||
|
||||
(defvar cus-test-tested-variables nil
|
||||
"List of options tested by last call of `cus-test-apropos'.")
|
||||
|
|
|
|||
|
|
@ -130,7 +130,7 @@ Integer values are handled in the `range' slot.")
|
|||
;; TODO we should be able to just cons hash this.
|
||||
(common-supertype-mem (make-hash-table :test #'equal) :type hash-table
|
||||
:documentation "Serve memoization for
|
||||
`comp-common-supertype'.")
|
||||
`comp-ctxt-common-supertype-mem'.")
|
||||
(subtype-p-mem (make-hash-table :test #'equal) :type hash-table
|
||||
:documentation "Serve memoization for
|
||||
`comp-cstr-ctxt-subtype-p-mem'.")
|
||||
|
|
|
|||
|
|
@ -443,7 +443,7 @@ of the channel. However, don't bother creating an actual
|
|||
Instead, just spoof an `erc-server-user' and stash it during
|
||||
\"PRIVMSG\" handling via `erc--cmem-from-nick-function' and
|
||||
retrieve it during buttonizing via
|
||||
`erc-button--fallback-user-function'."
|
||||
`erc-button--fallback-cmem-function'."
|
||||
:interactive nil
|
||||
(if erc-button--phantom-users-mode
|
||||
(progn
|
||||
|
|
|
|||
|
|
@ -924,7 +924,7 @@ and expected types. This function should return a face or nil.")
|
|||
Expect RANKS to be a list of faces and both NORMALS and the car
|
||||
of NEW-FACES to be hash tables mapping faces to non-nil values.
|
||||
Assume the latter's makeup and that of RANKS to resemble
|
||||
`erc-track-face-normal-list' and `erc-track-faces-priority-list'.
|
||||
`erc-track-faces-normal-list' and `erc-track-faces-priority-list'.
|
||||
If NEW-FACES has a cdr, expect it to be its car's contents
|
||||
ordered from most recently seen (later in the buffer) to
|
||||
earliest. In general, act like `erc-track-select-mode-line-face'
|
||||
|
|
|
|||
|
|
@ -286,7 +286,7 @@ See `easy-menu-add-item' for documentation."
|
|||
)
|
||||
|
||||
(defcustom filesets-menu-in-menu nil
|
||||
"Use that instead of `current-menubar' as the menu to change.
|
||||
"Use that instead of `current-global-map' as the menu to change.
|
||||
See `easy-menu-add-item' for documentation."
|
||||
:set #'filesets-set-default
|
||||
:type 'sexp)
|
||||
|
|
|
|||
|
|
@ -343,7 +343,7 @@ suitable for forms processing.")
|
|||
|
||||
(defvar forms-write-file-filter nil
|
||||
"The name of a function that is called before writing the data file.
|
||||
This can be used to undo the effects of `form-read-file-hook'.")
|
||||
This can be used to undo the effects of `form-read-file-filter'.")
|
||||
|
||||
(defvar forms-new-record-filter nil
|
||||
"The name of a function that is called when a new record is created.")
|
||||
|
|
|
|||
|
|
@ -438,7 +438,7 @@ ignored."
|
|||
`(canceled ,cancel-on-input-retval))
|
||||
(t (while t (accept-process-output nil 30)))))
|
||||
;; In normal operation, continuations for error/success is
|
||||
;; handled by `jsonrpc-continue'. Timeouts also remove
|
||||
;; handled by `jsonrpc--continue'. Timeouts also remove
|
||||
;; the continuation...
|
||||
(pcase-let* ((`(,id ,_) id-and-timer))
|
||||
;; ...but we still have to guard against exist explicit
|
||||
|
|
|
|||
|
|
@ -4112,7 +4112,7 @@ Only send the definition if it has not already been done."
|
|||
(unless (member name scripts)
|
||||
(with-tramp-progress-reporter
|
||||
vec 5 (format-message "Sending script `%s'" name)
|
||||
;; In bash, leading TABs like in `tramp-vc-registered-read-file-names'
|
||||
;; In bash, leading TABs like in `tramp-bundle-read-file-names'
|
||||
;; could result in unwanted command expansion. Avoid this.
|
||||
(setq script (tramp-compat-string-replace
|
||||
(make-string 1 ?\t) (make-string 8 ? ) script))
|
||||
|
|
|
|||
|
|
@ -3667,7 +3667,7 @@ CONTENTS is the contents of the object."
|
|||
;; takes care of tables with a "verbatim" mode. Otherwise, it
|
||||
;; delegates the job to either `org-latex--table.el-table',
|
||||
;; `org-latex--org-table', `org-latex--math-table' or
|
||||
;; `org-latex--org-align-string-tabbing' functions,
|
||||
;; `org-table--org-tabbing' functions,
|
||||
;; depending of the type of the table and the mode requested.
|
||||
;;
|
||||
;; `org-latex--align-string' is a subroutine used to build alignment
|
||||
|
|
|
|||
|
|
@ -37,9 +37,8 @@
|
|||
;;
|
||||
;; For indenting statements:
|
||||
;;
|
||||
;; - Set `c-ts-common-indent-offset',
|
||||
;; `c-ts-common-indent-block-type-regexp', and
|
||||
;; `c-ts-common-indent-bracketless-type-regexp', then use simple-indent
|
||||
;; - Set `c-ts-common-indent-offset', and
|
||||
;; `c-ts-common-indent-type-regexp-alist', then use simple-indent
|
||||
;; offset `c-ts-common-statement-offset' in
|
||||
;; `treesit-simple-indent-rules'.
|
||||
|
||||
|
|
@ -331,7 +330,7 @@ If NODE is nil, return nil."
|
|||
Assumes the anchor is (point-min), i.e., the 0th column.
|
||||
|
||||
This function basically counts the number of block nodes (i.e.,
|
||||
brackets) (defined by `c-ts-common-indent-block-type-regexp')
|
||||
brackets) (see `c-ts-common-indent-type-regexp-alist')
|
||||
between NODE and the root node (not counting NODE itself), and
|
||||
multiply that by `c-ts-common-indent-offset'.
|
||||
|
||||
|
|
|
|||
|
|
@ -11476,7 +11476,7 @@ This function might do hidden buffer changes."
|
|||
;; an arglist it would be a meaningless expression because
|
||||
;; the result isn't used. We therefore choose to recognize
|
||||
;; it as a declaration when there's "symmetrical WS" around
|
||||
;; the "*" or the flag `c-assymetry-fontification-flag' is
|
||||
;; the "*" or the flag `c-asymmetry-fontification-flag' is
|
||||
;; not set. We only allow a suffix (which makes the
|
||||
;; construct look like a function call) when `at-decl-start'
|
||||
;; provides additional evidence that we do have a
|
||||
|
|
|
|||
|
|
@ -1112,7 +1112,7 @@ casts and declarations are fontified. Used on level 2 and higher."
|
|||
;; 'c-decl-type-start (according to TYPES). Stop at LIMIT.
|
||||
;;
|
||||
;; If TYPES is t, fontify all identifiers as types; if it is a number, a
|
||||
;; buffer position, additionally set the `c-deftype' text property on the
|
||||
;; buffer position, additionally set the `c-typedef' text property on the
|
||||
;; keyword at that position; if it is nil fontify as either variables or
|
||||
;; functions, otherwise TYPES is a face to use. If NOT-TOP is non-nil, we
|
||||
;; are not at the top-level ("top-level" includes being directly inside a
|
||||
|
|
|
|||
|
|
@ -817,7 +817,7 @@ there be copies of the opener contained in the multi-line string."
|
|||
|
||||
(c-lang-defconst c-cpp-or-ml-match-offset
|
||||
;; The offset to be added onto match numbers for a multi-line string in
|
||||
;; matches for `c-cpp-or-ml-string-opener-re'.
|
||||
;; matches for `c-ml-string-cpp-or-opener-re'.
|
||||
t (if (c-lang-const c-anchored-cpp-prefix)
|
||||
(+ 2 (regexp-opt-depth (c-lang-const c-anchored-cpp-prefix)))
|
||||
2))
|
||||
|
|
|
|||
|
|
@ -715,7 +715,7 @@ associated `flymake-category' return DEFAULT."
|
|||
(delete-overlay ov)))
|
||||
|
||||
(defun flymake--eol-overlay-summary (src-ovs)
|
||||
"Helper function for `flymake--eol-overlay-update'."
|
||||
"Helper function for `flymake--update-eol-overlays'."
|
||||
(cl-flet ((summarize (d)
|
||||
(propertize (flymake-diagnostic-oneliner d t) 'face
|
||||
(flymake--lookup-type-property (flymake--diag-type d)
|
||||
|
|
|
|||
|
|
@ -406,7 +406,7 @@ to grant such permissions.
|
|||
|
||||
FANCY-P non-nil means the notice will be displayed with faces, in
|
||||
the style appropriate for its incorporation within the fancy splash
|
||||
screen display; see `francy-splash-insert'."
|
||||
screen display; see `fancy-splash-insert'."
|
||||
(unless (android-external-storage-available-p)
|
||||
(if fancy-p
|
||||
(fancy-splash-insert
|
||||
|
|
|
|||
|
|
@ -1027,7 +1027,7 @@ POINT was initially placed upon, and pixel deltas describing how
|
|||
much point has moved relative to its previous position in the X
|
||||
and Y axes.
|
||||
|
||||
If the fourth element of `touchscreen-current-tool' is `scroll',
|
||||
If the fourth element of `touch-screen-current-tool' is `scroll',
|
||||
then generate a `touchscreen-scroll' event with the window that
|
||||
POINT was initially placed upon, and pixel deltas describing how
|
||||
much point has moved relative to its previous position in the X
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue