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/progmodes | |
| 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/progmodes')
| -rw-r--r-- | lisp/progmodes/cc-mode.el | 2 | ||||
| -rw-r--r-- | lisp/progmodes/etags.el | 2 | ||||
| -rw-r--r-- | lisp/progmodes/verilog-mode.el | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/lisp/progmodes/cc-mode.el b/lisp/progmodes/cc-mode.el index 76f5de212f2..631787d73f1 100644 --- a/lisp/progmodes/cc-mode.el +++ b/lisp/progmodes/cc-mode.el | |||
| @@ -1966,7 +1966,7 @@ Note that this is a strict tail, so won't match, e.g. \"0x....\".") | |||
| 1966 | ;; these caches from inside them, and we must thus be sure that this | 1966 | ;; these caches from inside them, and we must thus be sure that this |
| 1967 | ;; has already been executed. | 1967 | ;; has already been executed. |
| 1968 | ;; | 1968 | ;; |
| 1969 | ;; This calls the language variable c-before-font-lock-functions, if non nil. | 1969 | ;; This calls the language variable c-before-font-lock-functions, if non-nil. |
| 1970 | ;; This typically sets `syntax-table' properties. | 1970 | ;; This typically sets `syntax-table' properties. |
| 1971 | 1971 | ||
| 1972 | ;; We can sometimes get two consecutive calls to `after-change-functions' | 1972 | ;; We can sometimes get two consecutive calls to `after-change-functions' |
diff --git a/lisp/progmodes/etags.el b/lisp/progmodes/etags.el index 78f27295f0c..a0351610008 100644 --- a/lisp/progmodes/etags.el +++ b/lisp/progmodes/etags.el | |||
| @@ -1313,7 +1313,7 @@ buffer-local values of tags table format variables." | |||
| 1313 | ;; Find the end of the tag and record the whole tag text. | 1313 | ;; Find the end of the tag and record the whole tag text. |
| 1314 | (search-forward "\177") | 1314 | (search-forward "\177") |
| 1315 | (setq tag-text (buffer-substring (1- (point)) (point-at-bol))) | 1315 | (setq tag-text (buffer-substring (1- (point)) (point-at-bol))) |
| 1316 | ;; If use-explicit is non nil and explicit tag is present, use it as part of | 1316 | ;; If use-explicit is non-nil and explicit tag is present, use it as part of |
| 1317 | ;; return value. Else just skip it. | 1317 | ;; return value. Else just skip it. |
| 1318 | (setq explicit-start (point)) | 1318 | (setq explicit-start (point)) |
| 1319 | (when (and (search-forward "\001" (point-at-bol 2) t) | 1319 | (when (and (search-forward "\001" (point-at-bol 2) t) |
diff --git a/lisp/progmodes/verilog-mode.el b/lisp/progmodes/verilog-mode.el index 2939108d47b..293d0b2450b 100644 --- a/lisp/progmodes/verilog-mode.el +++ b/lisp/progmodes/verilog-mode.el | |||
| @@ -626,7 +626,7 @@ If nil, indent as: | |||
| 626 | input [31:0] a; | 626 | input [31:0] a; |
| 627 | input \\=`CP; | 627 | input \\=`CP; |
| 628 | output c; | 628 | output c; |
| 629 | If non nil, treat as: | 629 | If non-nil, treat as: |
| 630 | input [31:0] a; | 630 | input [31:0] a; |
| 631 | input \\=`CP ; | 631 | input \\=`CP ; |
| 632 | output c;" | 632 | output c;" |