mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-01-04 02:51:31 -08:00
; Fix typos (misspelled symbols)
This commit is contained in:
parent
61e96789dd
commit
beaa2e4953
21 changed files with 32 additions and 34 deletions
|
|
@ -844,8 +844,8 @@ Binding,,, elisp, The Emacs Lisp Reference Manual}) to be active.
|
||||||
* Interaction with other modes::
|
* Interaction with other modes::
|
||||||
@end menu
|
@end menu
|
||||||
|
|
||||||
@findex flymake-proc-legacy-backend
|
@findex flymake-proc-legacy-flymake
|
||||||
The backend @code{flymake-proc-legacy-backend} was originally designed
|
The backend @code{flymake-proc-legacy-flymake} was originally designed
|
||||||
to be extended for supporting new syntax check tools and error message
|
to be extended for supporting new syntax check tools and error message
|
||||||
patterns. It is also controlled by its own set of customization variables
|
patterns. It is also controlled by its own set of customization variables
|
||||||
|
|
||||||
|
|
@ -1053,7 +1053,7 @@ check-syntax:
|
||||||
@cindex syntax check models
|
@cindex syntax check models
|
||||||
@cindex master file
|
@cindex master file
|
||||||
|
|
||||||
@code{flymake-proc-legacy-backend} saves a copy of the buffer in a
|
@code{flymake-proc-legacy-flymake} saves a copy of the buffer in a
|
||||||
temporary file in the buffer's directory (or in the system temporary
|
temporary file in the buffer's directory (or in the system temporary
|
||||||
directory, for Java files), creates a syntax check command and
|
directory, for Java files), creates a syntax check command and
|
||||||
launches a process with this command. The output is parsed using a
|
launches a process with this command. The output is parsed using a
|
||||||
|
|
|
||||||
|
|
@ -1176,7 +1176,7 @@ This function is for internal use only."
|
||||||
(defsubst semantic--tag-expanded-p (tag)
|
(defsubst semantic--tag-expanded-p (tag)
|
||||||
"Return non-nil if TAG is expanded.
|
"Return non-nil if TAG is expanded.
|
||||||
This function is for internal use only.
|
This function is for internal use only.
|
||||||
See also the function `semantic--expand-tag'."
|
See also the function `semantic--tag-expand'."
|
||||||
;; In fact a cooked tag is actually a list of cooked tags
|
;; In fact a cooked tag is actually a list of cooked tags
|
||||||
;; because a raw tag can be expanded in several cooked ones!
|
;; because a raw tag can be expanded in several cooked ones!
|
||||||
(when (consp tag)
|
(when (consp tag)
|
||||||
|
|
|
||||||
|
|
@ -234,7 +234,7 @@ return nil."
|
||||||
|
|
||||||
(defun package-vc--read-archive-data (archive)
|
(defun package-vc--read-archive-data (archive)
|
||||||
"Update `package-vc--archive-spec-alist' for ARCHIVE.
|
"Update `package-vc--archive-spec-alist' for ARCHIVE.
|
||||||
This function is meant to be used as a hook for `package--read-archive-hook'."
|
This function is meant to be used as a hook for `package-read-archive-hook'."
|
||||||
(let ((contents-file (expand-file-name
|
(let ((contents-file (expand-file-name
|
||||||
(format "archives/%s/elpa-packages.eld" archive)
|
(format "archives/%s/elpa-packages.eld" archive)
|
||||||
package-user-dir)))
|
package-user-dir)))
|
||||||
|
|
|
||||||
|
|
@ -393,17 +393,15 @@ variables in the Lisp expression:
|
||||||
"Add Icons to your group buffer."
|
"Add Icons to your group buffer."
|
||||||
:group 'gnus-group-visual)
|
:group 'gnus-group-visual)
|
||||||
|
|
||||||
(defcustom gnus-group-icon-list
|
(defcustom gnus-group-icon-list nil
|
||||||
nil
|
|
||||||
"Controls the insertion of icons into group buffer lines.
|
"Controls the insertion of icons into group buffer lines.
|
||||||
|
|
||||||
Below is a list of `Form'/`File' pairs. When deciding how a
|
Below is a list of `Form'/`File' pairs. When deciding how a
|
||||||
particular group line should be displayed, each form is evaluated.
|
particular group line should be displayed, each form is evaluated.
|
||||||
The icon from the file field after the first true form is used. You
|
The icon from the file field after the first true form is used. You
|
||||||
can change how those group lines are displayed by editing the file
|
can change how those group lines are displayed by editing the file
|
||||||
field. The File will either be found in the
|
field. The File will either be found in the `image-load-path'
|
||||||
`gnus-group-glyph-directory' or by designating absolute name of the
|
or by specifying the absolute name of the file.
|
||||||
file.
|
|
||||||
|
|
||||||
It is also possible to change and add form fields, but currently that
|
It is also possible to change and add form fields, but currently that
|
||||||
requires an understanding of Lisp expressions. Hopefully this will
|
requires an understanding of Lisp expressions. Hopefully this will
|
||||||
|
|
|
||||||
|
|
@ -357,7 +357,7 @@ mail-sending package is used for editing and sending the message."
|
||||||
(goto-char final-resting-place))
|
(goto-char final-resting-place))
|
||||||
(set-marker final-resting-place nil))
|
(set-marker final-resting-place nil))
|
||||||
|
|
||||||
;; save initial text and set up the `no-empty-submission' hook.
|
;; save initial text and set up the no empty submission hook.
|
||||||
;; This only works for mailers that support a pre-send hook, and
|
;; This only works for mailers that support a pre-send hook, and
|
||||||
;; for which the paradigm has a non-nil value for the `hookvar'
|
;; for which the paradigm has a non-nil value for the `hookvar'
|
||||||
;; key in its agent (i.e. sendmail.el's mail-send-hook).
|
;; key in its agent (i.e. sendmail.el's mail-send-hook).
|
||||||
|
|
|
||||||
|
|
@ -607,8 +607,9 @@ If no part is preferred then all the parts are displayed."
|
||||||
|
|
||||||
(defun mh-mime-maybe-display-alternatives (alternatives)
|
(defun mh-mime-maybe-display-alternatives (alternatives)
|
||||||
"Show buttons for ALTERNATIVES.
|
"Show buttons for ALTERNATIVES.
|
||||||
If `mh-mime-display-alternatives-flag' is non-nil then display
|
If `mh-display-buttons-for-alternatives-flag' is non-nil then
|
||||||
buttons for alternative parts that are usually suppressed."
|
display buttons for alternative parts that are usually
|
||||||
|
suppressed."
|
||||||
(when (and mh-display-buttons-for-alternatives-flag alternatives)
|
(when (and mh-display-buttons-for-alternatives-flag alternatives)
|
||||||
(insert "\n----------------------------------------------------\n")
|
(insert "\n----------------------------------------------------\n")
|
||||||
(insert "Alternatives:\n")
|
(insert "Alternatives:\n")
|
||||||
|
|
|
||||||
|
|
@ -279,9 +279,9 @@ as in the default of
|
||||||
^ *[0-9]+.\\\\([bct]\\\\).....[ ]*\\\\(..................\\\\)
|
^ *[0-9]+.\\\\([bct]\\\\).....[ ]*\\\\(..................\\\\)
|
||||||
|
|
||||||
If this regular expression is not correct, the notation hints
|
If this regular expression is not correct, the notation hints
|
||||||
will not be highlighted with the face
|
will not be highlighted with the face `mh-folder-sent-to-me-hint'
|
||||||
`mh-mh-folder-sent-to-me-hint' and the sender will not be
|
and the sender will not be highlighted with the face
|
||||||
highlighted with the face `mh-folder-sent-to-me-sender'.")
|
`mh-folder-sent-to-me-sender'.")
|
||||||
|
|
||||||
(defvar mh-scan-subject-regexp
|
(defvar mh-scan-subject-regexp
|
||||||
"^ *[0-9]+........[ ]*...................\\([Rr][Ee]\\(\\[[0-9]+\\]\\)?:\\s-*\\)*\\([^<\n]*\\)"
|
"^ *[0-9]+........[ ]*...................\\([Rr][Ee]\\(\\[[0-9]+\\]\\)?:\\s-*\\)*\\([^<\n]*\\)"
|
||||||
|
|
|
||||||
|
|
@ -545,7 +545,7 @@ by `org-babel-comint-async-filter'."
|
||||||
|
|
||||||
(defun ob-session-async-R-value-callback (params tmp-file)
|
(defun ob-session-async-R-value-callback (params tmp-file)
|
||||||
"Callback for async value results.
|
"Callback for async value results.
|
||||||
Assigned locally to `ob-session-async-file-callback' in R
|
Assigned locally to `org-babel-comint-async-file-callback' in R
|
||||||
comint buffers used for asynchronous Babel evaluation."
|
comint buffers used for asynchronous Babel evaluation."
|
||||||
(let* ((graphics-file (and (member "graphics" (assq :result-params params))
|
(let* ((graphics-file (and (member "graphics" (assq :result-params params))
|
||||||
(org-babel-graphical-output-file params)))
|
(org-babel-graphical-output-file params)))
|
||||||
|
|
|
||||||
|
|
@ -428,8 +428,7 @@ When `org-clock-clocked-in-display' is set to `frame-title'
|
||||||
or `both', clocking in will replace `frame-title-format' with
|
or `both', clocking in will replace `frame-title-format' with
|
||||||
this value. Clocking out will restore `frame-title-format'.
|
this value. Clocking out will restore `frame-title-format'.
|
||||||
|
|
||||||
`org-frame-title-string' is a format string using the same
|
This uses the same format as `frame-title-format', which see."
|
||||||
specifications than `frame-title-format', which see."
|
|
||||||
:version "24.1"
|
:version "24.1"
|
||||||
:group 'org-clock
|
:group 'org-clock
|
||||||
:type 'sexp)
|
:type 'sexp)
|
||||||
|
|
|
||||||
|
|
@ -139,7 +139,7 @@ is not sufficient to know if point is at a paragraph ending. See
|
||||||
(defvar org-element--object-regexp nil
|
(defvar org-element--object-regexp nil
|
||||||
"Regexp possibly matching the beginning of an object.
|
"Regexp possibly matching the beginning of an object.
|
||||||
This regexp allows false positives. Dedicated parser (e.g.,
|
This regexp allows false positives. Dedicated parser (e.g.,
|
||||||
`org-export-bold-parser') will take care of further filtering.
|
`org-element-bold-parser') will take care of further filtering.
|
||||||
Radio links are not matched by this regexp, as they are treated
|
Radio links are not matched by this regexp, as they are treated
|
||||||
specially in `org-element--object-lex'.")
|
specially in `org-element--object-lex'.")
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -591,7 +591,7 @@ If SILENT is non-nil, messages are suppressed."
|
||||||
(setf (car item) (expand-file-name (car item) loc))))
|
(setf (car item) (expand-file-name (car item) loc))))
|
||||||
org-id-locations)))
|
org-id-locations)))
|
||||||
(error
|
(error
|
||||||
(message "Could not read `org-id-values' from %s, setting it to nil"
|
(message "Could not read `org-id-locations' from %s, setting it to nil"
|
||||||
org-id-locations-file))))
|
org-id-locations-file))))
|
||||||
(setq org-id-files (mapcar 'car org-id-locations))
|
(setq org-id-files (mapcar 'car org-id-locations))
|
||||||
(setq org-id-locations (org-id-alist-to-hash org-id-locations))))
|
(setq org-id-locations (org-id-alist-to-hash org-id-locations))))
|
||||||
|
|
|
||||||
|
|
@ -687,7 +687,7 @@ to deal with new-style links.")
|
||||||
fname)))
|
fname)))
|
||||||
|
|
||||||
(defadvice server-visit-files (before org-protocol-detect-protocol-server activate)
|
(defadvice server-visit-files (before org-protocol-detect-protocol-server activate)
|
||||||
"Advice server-visit-flist to call `org-protocol-modify-filename-for-protocol'."
|
"Advice server-visit-flist to call `org-protocol-check-filename-for-protocol'."
|
||||||
(let ((flist (if org-protocol-reverse-list-of-files
|
(let ((flist (if org-protocol-reverse-list-of-files
|
||||||
(reverse (ad-get-arg 0))
|
(reverse (ad-get-arg 0))
|
||||||
(ad-get-arg 0)))
|
(ad-get-arg 0)))
|
||||||
|
|
|
||||||
|
|
@ -35,7 +35,7 @@
|
||||||
;; `org-koma-letter-export-to-pdf' ("pdf" file).
|
;; `org-koma-letter-export-to-pdf' ("pdf" file).
|
||||||
;;
|
;;
|
||||||
;; On top of buffer keywords supported by `latex' back-end (see
|
;; On top of buffer keywords supported by `latex' back-end (see
|
||||||
;; `org-latex-options-alist'), this back-end introduces the following
|
;; `org-latex-packages-alist'), this back-end introduces the following
|
||||||
;; keywords:
|
;; keywords:
|
||||||
;; - CLOSING: see `org-koma-letter-closing',
|
;; - CLOSING: see `org-koma-letter-closing',
|
||||||
;; - FROM_ADDRESS: see `org-koma-letter-from-address',
|
;; - FROM_ADDRESS: see `org-koma-letter-from-address',
|
||||||
|
|
@ -66,7 +66,7 @@
|
||||||
;; - from-logo (see `org-koma-letter-use-from-logo')
|
;; - from-logo (see `org-koma-letter-use-from-logo')
|
||||||
;; - email (see `org-koma-letter-use-email')
|
;; - email (see `org-koma-letter-use-email')
|
||||||
;; - place (see `org-koma-letter-use-place')
|
;; - place (see `org-koma-letter-use-place')
|
||||||
;; - location (see `org-koma-letter-use-location')
|
;; - location (see `org-koma-letter-location')
|
||||||
;; - subject, a list of format options
|
;; - subject, a list of format options
|
||||||
;; (see `org-koma-letter-subject-format')
|
;; (see `org-koma-letter-subject-format')
|
||||||
;; - after-closing-order, a list of the ordering of headings with
|
;; - after-closing-order, a list of the ordering of headings with
|
||||||
|
|
|
||||||
|
|
@ -3227,8 +3227,7 @@ Return a cons of (TABLE-CELL-STYLE-NAME . PARAGRAPH-STYLE-NAME).
|
||||||
When STYLE-SPEC is nil, style the table cell the conventional way
|
When STYLE-SPEC is nil, style the table cell the conventional way
|
||||||
- choose cell borders based on row and column groupings and
|
- choose cell borders based on row and column groupings and
|
||||||
choose paragraph alignment based on `org-col-cookies' text
|
choose paragraph alignment based on `org-col-cookies' text
|
||||||
property. See also
|
property. See also `org-odt-table-style-spec'.
|
||||||
`org-odt-get-paragraph-style-cookie-for-table-cell'.
|
|
||||||
|
|
||||||
When STYLE-SPEC is non-nil, ignore the above cookie and return
|
When STYLE-SPEC is non-nil, ignore the above cookie and return
|
||||||
styles congruent with the ODF-1.2 specification."
|
styles congruent with the ODF-1.2 specification."
|
||||||
|
|
@ -3573,8 +3572,7 @@ pertaining to indentation here."
|
||||||
;; item, but also within description lists and low-level
|
;; item, but also within description lists and low-level
|
||||||
;; headlines.
|
;; headlines.
|
||||||
|
|
||||||
;; See `org-odt-translate-description-lists' and
|
;; See `org-odt--translate-description-lists' for how this is
|
||||||
;; `org-odt-translate-low-level-headlines' for how this is
|
|
||||||
;; tackled.
|
;; tackled.
|
||||||
|
|
||||||
(concat "\n"
|
(concat "\n"
|
||||||
|
|
|
||||||
|
|
@ -6291,7 +6291,7 @@ to `:default' encoding. If it fails, return S."
|
||||||
;;
|
;;
|
||||||
;; Export Stack is viewed through a dedicated major mode
|
;; Export Stack is viewed through a dedicated major mode
|
||||||
;;`org-export-stack-mode' and tools: `org-export-stack-refresh',
|
;;`org-export-stack-mode' and tools: `org-export-stack-refresh',
|
||||||
;;`org-export-stack-delete', `org-export-stack-view' and
|
;;`org-export-stack-remove', `org-export-stack-view' and
|
||||||
;;`org-export-stack-clear'.
|
;;`org-export-stack-clear'.
|
||||||
;;
|
;;
|
||||||
;; For back-ends, `org-export-add-to-stack' add a new source to stack.
|
;; For back-ends, `org-export-add-to-stack' add a new source to stack.
|
||||||
|
|
|
||||||
|
|
@ -1065,6 +1065,8 @@ Note that this does not hide the lines preceding the first heading line."
|
||||||
;; Nullify the hook to avoid repeated calls to `outline-flag-region'
|
;; Nullify the hook to avoid repeated calls to `outline-flag-region'
|
||||||
;; wasting lots of time running `lazy-lock-fontify-after-outline'
|
;; wasting lots of time running `lazy-lock-fontify-after-outline'
|
||||||
;; and run the hook finally.
|
;; and run the hook finally.
|
||||||
|
;; FIXME: The above comment seems outdated, as lazy-lock has been
|
||||||
|
;; removed from Emacs.
|
||||||
(let (outline-view-change-hook)
|
(let (outline-view-change-hook)
|
||||||
(save-excursion
|
(save-excursion
|
||||||
(save-restriction
|
(save-restriction
|
||||||
|
|
|
||||||
|
|
@ -2452,7 +2452,7 @@ When called interactively, use the currently active server"
|
||||||
Calls REPORT-FN (or arranges for it to be called) when the server
|
Calls REPORT-FN (or arranges for it to be called) when the server
|
||||||
publishes diagnostics. Between calls to this function, REPORT-FN
|
publishes diagnostics. Between calls to this function, REPORT-FN
|
||||||
may be called multiple times (respecting the protocol of
|
may be called multiple times (respecting the protocol of
|
||||||
`flymake-backend-functions')."
|
`flymake-diagnostic-functions')."
|
||||||
(cond (eglot--managed-mode
|
(cond (eglot--managed-mode
|
||||||
(setq eglot--current-flymake-report-fn report-fn)
|
(setq eglot--current-flymake-report-fn report-fn)
|
||||||
(eglot--report-to-flymake eglot--diagnostics))
|
(eglot--report-to-flymake eglot--diagnostics))
|
||||||
|
|
|
||||||
|
|
@ -114,7 +114,7 @@ process that is passed the current buffer's contents via stdin.
|
||||||
REPORT-FN is Flymake's callback."
|
REPORT-FN is Flymake's callback."
|
||||||
;; HACK: XXX: Assuming this backend function is run before it in
|
;; HACK: XXX: Assuming this backend function is run before it in
|
||||||
;; `flymake-diagnostic-functions', very hackingly convince the other
|
;; `flymake-diagnostic-functions', very hackingly convince the other
|
||||||
;; backend `flymake-proc-legacy-backend', which is on by default, to
|
;; backend `flymake-proc-legacy-flymake', which is on by default, to
|
||||||
;; disable itself.
|
;; disable itself.
|
||||||
;;
|
;;
|
||||||
(setq-local flymake-proc-allowed-file-name-masks nil)
|
(setq-local flymake-proc-allowed-file-name-masks nil)
|
||||||
|
|
|
||||||
|
|
@ -448,7 +448,7 @@ a face highlighting may be better."
|
||||||
We use a single character by default, since the main block of IDL procedures
|
We use a single character by default, since the main block of IDL procedures
|
||||||
often has no indentation. Where possible, IDLWAVE will use overlays to
|
often has no indentation. Where possible, IDLWAVE will use overlays to
|
||||||
display the stop-lines. The arrow is only used on character-based terminals.
|
display the stop-lines. The arrow is only used on character-based terminals.
|
||||||
See also `idlwave-shell-use-overlay-arrow'."
|
See also `idlwave-shell-mark-stop-line'."
|
||||||
:group 'idlwave-shell-highlighting-and-faces
|
:group 'idlwave-shell-highlighting-and-faces
|
||||||
:type 'string)
|
:type 'string)
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -184,7 +184,7 @@ DISPLAY is the name of the display Emacs should connect to."
|
||||||
(defun pgtk-preedit-text (event)
|
(defun pgtk-preedit-text (event)
|
||||||
"An internal function to display preedit text from input method.
|
"An internal function to display preedit text from input method.
|
||||||
|
|
||||||
EVENT is a `preedit-text-event'."
|
EVENT is a `preedit-text' event."
|
||||||
(interactive "e")
|
(interactive "e")
|
||||||
(when pgtk-preedit-overlay
|
(when pgtk-preedit-overlay
|
||||||
(delete-overlay pgtk-preedit-overlay))
|
(delete-overlay pgtk-preedit-overlay))
|
||||||
|
|
|
||||||
|
|
@ -746,7 +746,7 @@ The value should be a cons whose car specifies the regexp to match
|
||||||
visualization of SPACEs, and the cdr specifies the regexp to match
|
visualization of SPACEs, and the cdr specifies the regexp to match
|
||||||
visualization of TABs.
|
visualization of TABs.
|
||||||
|
|
||||||
The indentation characters are highlighted using the `whitespace-indentationp'
|
The indentation characters are highlighted using the `whitespace-indentation'
|
||||||
face.
|
face.
|
||||||
This variable is used when `whitespace-style' includes `indentation',
|
This variable is used when `whitespace-style' includes `indentation',
|
||||||
`indentation::tab' or `indentation::space'."
|
`indentation::tab' or `indentation::space'."
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue