diff options
| author | Juanma Barranquero | 2019-09-19 04:32:25 +0200 |
|---|---|---|
| committer | Juanma Barranquero | 2019-09-19 04:32:25 +0200 |
| commit | 79a01866a01754b9f566af76ef96e80cd90d094b (patch) | |
| tree | f08a0ba4abd3caca32ad82e582e9327bdc43e569 /lisp/textmodes | |
| parent | 34f1035e878a06ad181ff7fc533cd1fa0a565847 (diff) | |
| download | emacs-79a01866a01754b9f566af76ef96e80cd90d094b.tar.gz emacs-79a01866a01754b9f566af76ef96e80cd90d094b.zip | |
lisp/*.el, src/*.c: Fix typos in docstrings
* lisp/apropos.el (apropos-do-all):
* lisp/auth-source-pass.el (auth-source-pass--select-from-entries):
* lisp/auth-source.el (auth-source-user-or-password):
* lisp/calc/calc-forms.el (math-tzone-names):
* lisp/calendar/diary-lib.el (diary-face-attrs)
(diary-mark-entries-1):
* lisp/cedet/cedet-files.el (cedet-files-list-recursively):
* lisp/cedet/ede.el (ede-constructing, ede-deep-rescan):
* lisp/cedet/ede/cpp-root.el (ede-cpp-root-header-file-p):
* lisp/cedet/ede/proj.el (ede-proj-target-makefile):
* lisp/cedet/inversion.el (inversion-check-version)
(inversion-test):
* lisp/cedet/mode-local.el (mode-local-map-file-buffers):
* lisp/cedet/semantic/complete.el (semantic-displayer-ghost):
* lisp/cedet/semantic/db-find.el (semanticdb-find-translate-path-default):
* lisp/cedet/semantic/db.el (semanticdb-table)
(semanticdb-search-system-databases):
* lisp/cedet/semantic/imenu.el (semantic-imenu-index-directory):
* lisp/cedet/semantic/java.el (semantic-java-doc-keywords-map):
* lisp/cedet/semantic/lex-spp.el (semantic-lex-spp-use-headers-flag):
* lisp/cedet/semantic/lex.el (semantic-lex-make-keyword-table)
(semantic-lex-make-type-table, semantic-lex-debug-analyzers):
* lisp/cedet/semantic/tag-ls.el (semantic-tag-abstract-p)
(semantic-tag-leaf-p, semantic-tag-static-p)
(semantic-tag-prototype-p):
* lisp/dnd.el (dnd-open-remote-file-function, dnd-open-local-file):
* lisp/emacs-lisp/eieio-opt.el (eieio-build-class-alist)
(eieio-read-class, eieio-read-subclass):
* lisp/emacs-lisp/generator.el (cps--replace-variable-references)
(cps--handle-loop-for):
* lisp/erc/erc-dcc.el (erc-dcc-list, erc-dcc-member, erc-dcc-server)
(erc-dcc-auto-mask-p, erc-dcc-get-file, erc-dcc-chat-accept):
* lisp/eshell/em-pred.el (eshell-pred-file-type):
* lisp/faces.el (defined-colors-with-face-attributes):
* lisp/font-core.el (font-lock-mode):
* lisp/frame.el (frame-restack):
* lisp/net/shr.el (shr-image-animate):
* lisp/org/org-agenda.el (org-agenda-change-all-lines)
(org-agenda-today-p):
* lisp/org/org-id.el (org-id-get):
* lisp/org/org.el (org-highlight-latex-and-related)
(org--valid-property-p):
* lisp/org/ox-beamer.el (org-beamer--get-label):
* lisp/org/ox-latex.el (org-latex--caption-above-p):
* lisp/org/ox-odt.el (org-odt--copy-image-file)
(org-odt--copy-formula-file):
* lisp/org/ox.el (org-export-with-timestamps):
* lisp/progmodes/verilog-mode.el (verilog-indent-declaration-macros):
* lisp/ses.el (ses-file-format-extend-parameter-list):
* lisp/term.el (ansi-term):
* lisp/textmodes/bibtex.el (bibtex-no-opt-remove-re)
(bibtex-beginning-of-first-entry, bibtex-autokey-get-title)
(bibtex-read-key, bibtex-initialize):
* lisp/textmodes/flyspell.el (flyspell-word):
* lisp/view.el (view-mode-exit):
* src/composite.c:
* src/floatfns.c (Fisnan): Fix typos in docstrings.
Diffstat (limited to 'lisp/textmodes')
| -rw-r--r-- | lisp/textmodes/bibtex.el | 10 | ||||
| -rw-r--r-- | lisp/textmodes/flyspell.el | 2 |
2 files changed, 6 insertions, 6 deletions
diff --git a/lisp/textmodes/bibtex.el b/lisp/textmodes/bibtex.el index a560c2b097f..5ae8097891a 100644 --- a/lisp/textmodes/bibtex.el +++ b/lisp/textmodes/bibtex.el | |||
| @@ -862,7 +862,7 @@ To interactively change the dialect use the command `bibtex-set-dialect'." | |||
| 862 | 862 | ||
| 863 | (defcustom bibtex-no-opt-remove-re "\\`option" | 863 | (defcustom bibtex-no-opt-remove-re "\\`option" |
| 864 | "If a field name matches this regexp, the prefix OPT is not removed. | 864 | "If a field name matches this regexp, the prefix OPT is not removed. |
| 865 | If nil prefix OPT is always removed" | 865 | If nil prefix OPT is always removed." |
| 866 | :group 'bibtex | 866 | :group 'bibtex |
| 867 | :version "24.1" | 867 | :version "24.1" |
| 868 | :type '(choice (regexp) (const nil))) | 868 | :type '(choice (regexp) (const nil))) |
| @@ -2188,7 +2188,7 @@ If FLAG is nil, a message is echoed if point was incremented at least | |||
| 2188 | (defun bibtex-beginning-of-first-entry () | 2188 | (defun bibtex-beginning-of-first-entry () |
| 2189 | "Go to beginning of line of first BibTeX entry in buffer. | 2189 | "Go to beginning of line of first BibTeX entry in buffer. |
| 2190 | If `bibtex-sort-ignore-string-entries' is non-nil, @String entries | 2190 | If `bibtex-sort-ignore-string-entries' is non-nil, @String entries |
| 2191 | are ignored. Return point" | 2191 | are ignored. Return point." |
| 2192 | (goto-char (point-min)) | 2192 | (goto-char (point-min)) |
| 2193 | (bibtex-skip-to-valid-entry) | 2193 | (bibtex-skip-to-valid-entry) |
| 2194 | (point)) | 2194 | (point)) |
| @@ -2714,7 +2714,7 @@ and `bibtex-autokey-names-stretch'." | |||
| 2714 | 2714 | ||
| 2715 | (defun bibtex-autokey-get-title () | 2715 | (defun bibtex-autokey-get-title () |
| 2716 | "Get title field contents up to a terminator. | 2716 | "Get title field contents up to a terminator. |
| 2717 | Return the result as a string" | 2717 | Return the result as a string." |
| 2718 | (let ((case-fold-search t) | 2718 | (let ((case-fold-search t) |
| 2719 | (titlestring | 2719 | (titlestring |
| 2720 | (bibtex-autokey-get-field "title" | 2720 | (bibtex-autokey-get-field "title" |
| @@ -2866,7 +2866,7 @@ Concatenate the key: | |||
| 2866 | (defun bibtex-read-key (prompt &optional key global) | 2866 | (defun bibtex-read-key (prompt &optional key global) |
| 2867 | "Read BibTeX key from minibuffer using PROMPT and default KEY. | 2867 | "Read BibTeX key from minibuffer using PROMPT and default KEY. |
| 2868 | If optional arg GLOBAL is non-nil, completion is based on the keys in | 2868 | If optional arg GLOBAL is non-nil, completion is based on the keys in |
| 2869 | `bibtex-reference-keys' of `bibtex-files'," | 2869 | `bibtex-reference-keys' of `bibtex-files'." |
| 2870 | (let (completion-ignore-case) | 2870 | (let (completion-ignore-case) |
| 2871 | (completing-read prompt (if global (bibtex-global-key-alist) | 2871 | (completing-read prompt (if global (bibtex-global-key-alist) |
| 2872 | bibtex-reference-keys) | 2872 | bibtex-reference-keys) |
| @@ -3054,7 +3054,7 @@ already set. If SELECT is non-nil interactively select a BibTeX buffer. | |||
| 3054 | 3054 | ||
| 3055 | When called interactively, FORCE is t, CURRENT is t if current buffer | 3055 | When called interactively, FORCE is t, CURRENT is t if current buffer |
| 3056 | visits a file using `bibtex-mode', and SELECT is t if current buffer | 3056 | visits a file using `bibtex-mode', and SELECT is t if current buffer |
| 3057 | does not use `bibtex-mode'," | 3057 | does not use `bibtex-mode'." |
| 3058 | (interactive (list (eq major-mode 'bibtex-mode) t | 3058 | (interactive (list (eq major-mode 'bibtex-mode) t |
| 3059 | (not (eq major-mode 'bibtex-mode)))) | 3059 | (not (eq major-mode 'bibtex-mode)))) |
| 3060 | (let ((file-path (split-string (or bibtex-file-path default-directory) ":+")) | 3060 | (let ((file-path (split-string (or bibtex-file-path default-directory) ":+")) |
diff --git a/lisp/textmodes/flyspell.el b/lisp/textmodes/flyspell.el index bfe912308e9..bae0283497e 100644 --- a/lisp/textmodes/flyspell.el +++ b/lisp/textmodes/flyspell.el | |||
| @@ -1116,7 +1116,7 @@ Mostly we check word delimiters." | |||
| 1116 | If the optional argument FOLLOWING, or, when called interactively | 1116 | If the optional argument FOLLOWING, or, when called interactively |
| 1117 | `ispell-following-word', is non-nil, checks the following (rather | 1117 | `ispell-following-word', is non-nil, checks the following (rather |
| 1118 | than preceding) word when the cursor is not over a word. If | 1118 | than preceding) word when the cursor is not over a word. If |
| 1119 | optional argument KNOWN-MISSPELLING is non nil considers word a | 1119 | optional argument KNOWN-MISSPELLING is non-nil considers word a |
| 1120 | misspelling and skips redundant spell-checking step. | 1120 | misspelling and skips redundant spell-checking step. |
| 1121 | 1121 | ||
| 1122 | See `flyspell-get-word' for details of how this finds the word to | 1122 | See `flyspell-get-word' for details of how this finds the word to |