aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/cedet
diff options
context:
space:
mode:
authorJuanma Barranquero2019-09-19 04:32:25 +0200
committerJuanma Barranquero2019-09-19 04:32:25 +0200
commit79a01866a01754b9f566af76ef96e80cd90d094b (patch)
treef08a0ba4abd3caca32ad82e582e9327bdc43e569 /lisp/cedet
parent34f1035e878a06ad181ff7fc533cd1fa0a565847 (diff)
downloademacs-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/cedet')
-rw-r--r--lisp/cedet/cedet-files.el2
-rw-r--r--lisp/cedet/ede.el4
-rw-r--r--lisp/cedet/ede/cpp-root.el2
-rw-r--r--lisp/cedet/ede/proj.el2
-rw-r--r--lisp/cedet/inversion.el6
-rw-r--r--lisp/cedet/mode-local.el2
-rw-r--r--lisp/cedet/semantic/complete.el2
-rw-r--r--lisp/cedet/semantic/db-find.el2
-rw-r--r--lisp/cedet/semantic/db.el4
-rw-r--r--lisp/cedet/semantic/imenu.el2
-rw-r--r--lisp/cedet/semantic/java.el2
-rw-r--r--lisp/cedet/semantic/lex-spp.el2
-rw-r--r--lisp/cedet/semantic/lex.el6
-rw-r--r--lisp/cedet/semantic/tag-ls.el8
-rw-r--r--lisp/cedet/semantic/wisent.el2
15 files changed, 24 insertions, 24 deletions
diff --git a/lisp/cedet/cedet-files.el b/lisp/cedet/cedet-files.el
index d3becd5c845..7329eb37f7f 100644
--- a/lisp/cedet/cedet-files.el
+++ b/lisp/cedet/cedet-files.el
@@ -89,7 +89,7 @@ specific conversions during tests."
89 file)) 89 file))
90 90
91(defun cedet-files-list-recursively (dir re) 91(defun cedet-files-list-recursively (dir re)
92 "Returns list of files in directory matching to given regex" 92 "Return list of files in directory matching to given regex."
93 (when (file-accessible-directory-p dir) 93 (when (file-accessible-directory-p dir)
94 (let ((files (directory-files dir t)) 94 (let ((files (directory-files dir t))
95 matched) 95 matched)
diff --git a/lisp/cedet/ede.el b/lisp/cedet/ede.el
index d051510a994..1969df54cde 100644
--- a/lisp/cedet/ede.el
+++ b/lisp/cedet/ede.el
@@ -162,12 +162,12 @@ This object's class determines how to compile and debug from a buffer.")
162If `ede-object' is nil, then commands will operate on this object.") 162If `ede-object' is nil, then commands will operate on this object.")
163 163
164(defvar ede-constructing nil 164(defvar ede-constructing nil
165 "Non nil when constructing a project hierarchy. 165 "Non-nil when constructing a project hierarchy.
166If the project is being constructed from an autoload, then the 166If the project is being constructed from an autoload, then the
167value is the autoload object being used.") 167value is the autoload object being used.")
168 168
169(defvar ede-deep-rescan nil 169(defvar ede-deep-rescan nil
170 "Non nil means scan down a tree, otherwise rescans are top level only. 170 "Non-nil means scan down a tree, otherwise rescans are top level only.
171Do not set this to non-nil globally. It is used internally.") 171Do not set this to non-nil globally. It is used internally.")
172 172
173 173
diff --git a/lisp/cedet/ede/cpp-root.el b/lisp/cedet/ede/cpp-root.el
index 0a77692dd71..feff63681a8 100644
--- a/lisp/cedet/ede/cpp-root.el
+++ b/lisp/cedet/ede/cpp-root.el
@@ -389,7 +389,7 @@ This knows details about or source tree."
389;; include lists, and Preprocessor symbol tables. 389;; include lists, and Preprocessor symbol tables.
390 390
391(cl-defmethod ede-cpp-root-header-file-p ((proj ede-cpp-root-project) name) 391(cl-defmethod ede-cpp-root-header-file-p ((proj ede-cpp-root-project) name)
392 "Non nil if in PROJ the filename NAME is a header." 392 "Non-nil if in PROJ the filename NAME is a header."
393 (save-match-data 393 (save-match-data
394 (string-match (oref proj header-match-regexp) name))) 394 (string-match (oref proj header-match-regexp) name)))
395 395
diff --git a/lisp/cedet/ede/proj.el b/lisp/cedet/ede/proj.el
index 59ba3ffcf8c..2ce65e91bde 100644
--- a/lisp/cedet/ede/proj.el
+++ b/lisp/cedet/ede/proj.el
@@ -165,7 +165,7 @@ These are the linkers the user can choose from when setting the
165 :label "Part of all: target" 165 :label "Part of all: target"
166 :group make 166 :group make
167 :documentation 167 :documentation
168 "Non nil means the rule created is part of the all: target. 168 "Non-nil means the rule created is part of the all: target.
169Setting this to nil creates the rule to build this item, but does not 169Setting this to nil creates the rule to build this item, but does not
170include it in the all: rule.") 170include it in the all: rule.")
171 (configuration-variables 171 (configuration-variables
diff --git a/lisp/cedet/inversion.el b/lisp/cedet/inversion.el
index 3bed9d70534..83561a0dfa7 100644
--- a/lisp/cedet/inversion.el
+++ b/lisp/cedet/inversion.el
@@ -226,7 +226,7 @@ not an indication of new features or bug fixes."
226 "Check that a given version meets the minimum requirement. 226 "Check that a given version meets the minimum requirement.
227VERSION, INCOMPATIBLE-VERSION and MINIMUM are of similar format to 227VERSION, INCOMPATIBLE-VERSION and MINIMUM are of similar format to
228return entries of `inversion-decode-version', or a classic version 228return entries of `inversion-decode-version', or a classic version
229string. INCOMPATIBLE-VERSION can be nil. 229string. INCOMPATIBLE-VERSION can be nil.
230RESERVED arguments are kept for a later use. 230RESERVED arguments are kept for a later use.
231Return: 231Return:
232- nil if everything is ok. 232- nil if everything is ok.
@@ -274,7 +274,7 @@ MINIMUM is of similar format to return entries of
274RESERVED arguments are kept for a later user. 274RESERVED arguments are kept for a later user.
275This depends on the symbols `PACKAGE-version' and optionally 275This depends on the symbols `PACKAGE-version' and optionally
276`PACKAGE-incompatible-version' being defined in PACKAGE. 276`PACKAGE-incompatible-version' being defined in PACKAGE.
277Return nil if everything is ok. Return an error string otherwise." 277Return nil if everything is ok. Return an error string otherwise."
278 (let ((check (inversion-check-version 278 (let ((check (inversion-check-version
279 (inversion-package-version package) 279 (inversion-package-version package)
280 (inversion-package-incompatibility-version package) 280 (inversion-package-incompatibility-version package)
@@ -306,7 +306,7 @@ OLDVERSION is of similar format to return entries of
306RESERVED arguments are kept for a later user. 306RESERVED arguments are kept for a later user.
307This depends on the symbols `PACKAGE-version' and optionally 307This depends on the symbols `PACKAGE-version' and optionally
308`PACKAGE-incompatible-version' being defined in PACKAGE. 308`PACKAGE-incompatible-version' being defined in PACKAGE.
309Return nil if everything is ok. Return an error string otherwise." 309Return nil if everything is ok. Return an error string otherwise."
310 (let ((check (inversion-check-version 310 (let ((check (inversion-check-version
311 (inversion-package-version package) 311 (inversion-package-version package)
312 (inversion-package-incompatibility-version package) 312 (inversion-package-incompatibility-version package)
diff --git a/lisp/cedet/mode-local.el b/lisp/cedet/mode-local.el
index 3d2fe45fcb1..50dc3cb7937 100644
--- a/lisp/cedet/mode-local.el
+++ b/lisp/cedet/mode-local.el
@@ -58,7 +58,7 @@
58 "Run FUNCTION on every file buffer found. 58 "Run FUNCTION on every file buffer found.
59FUNCTION does not have arguments; when it is entered `current-buffer' 59FUNCTION does not have arguments; when it is entered `current-buffer'
60is the currently selected file buffer. 60is the currently selected file buffer.
61If optional argument PREDICATE is non nil, only select file buffers 61If optional argument PREDICATE is non-nil, only select file buffers
62for which the function PREDICATE returns non-nil. 62for which the function PREDICATE returns non-nil.
63If optional argument BUFFERS is non-nil, it is a list of buffers to 63If optional argument BUFFERS is non-nil, it is a list of buffers to
64walk through. It defaults to `buffer-list'." 64walk through. It defaults to `buffer-list'."
diff --git a/lisp/cedet/semantic/complete.el b/lisp/cedet/semantic/complete.el
index b438a1c6e22..8f89d1a51e2 100644
--- a/lisp/cedet/semantic/complete.el
+++ b/lisp/cedet/semantic/complete.el
@@ -1800,7 +1800,7 @@ Return a cons cell (X . Y)"
1800 "The overlay the ghost text is displayed in.") 1800 "The overlay the ghost text is displayed in.")
1801 (first-show :initform t 1801 (first-show :initform t
1802 :documentation 1802 :documentation
1803 "Non nil if we have not seen our first show request.") 1803 "Non-nil if we have not seen our first show request.")
1804 ) 1804 )
1805 "Cycle completions inline with ghost text. 1805 "Cycle completions inline with ghost text.
1806Completion displayer using ghost chars after point for focus options. 1806Completion displayer using ghost chars after point for focus options.
diff --git a/lisp/cedet/semantic/db-find.el b/lisp/cedet/semantic/db-find.el
index 54935c3a7c7..18c749b098e 100644
--- a/lisp/cedet/semantic/db-find.el
+++ b/lisp/cedet/semantic/db-find.el
@@ -304,7 +304,7 @@ so that it can be called from the idle work handler."
304 304
305(defun semanticdb-find-translate-path-default (path brutish) 305(defun semanticdb-find-translate-path-default (path brutish)
306 "Translate PATH into a list of semantic tables. 306 "Translate PATH into a list of semantic tables.
307If BRUTISH is non nil, return all tables associated with PATH. 307If BRUTISH is non-nil, return all tables associated with PATH.
308Default action as described in `semanticdb-find-translate-path'." 308Default action as described in `semanticdb-find-translate-path'."
309 (if (semanticdb-find-results-p path) 309 (if (semanticdb-find-results-p path)
310 ;; nil means perform the search over these results. 310 ;; nil means perform the search over these results.
diff --git a/lisp/cedet/semantic/db.el b/lisp/cedet/semantic/db.el
index 33ad4701769..5c7f8423839 100644
--- a/lisp/cedet/semantic/db.el
+++ b/lisp/cedet/semantic/db.el
@@ -238,7 +238,7 @@ If nil, the table's buffer is no in Emacs. If it has a value, then
238it is in Emacs.") 238it is in Emacs.")
239 (dirty :initform nil 239 (dirty :initform nil
240 :documentation 240 :documentation
241 "Non nil if this table needs to be `Saved'.") 241 "Non-nil if this table needs to be `Saved'.")
242 (db-refs :initform nil 242 (db-refs :initform nil
243 :documentation 243 :documentation
244 "List of `semanticdb-table' objects referring to this one. 244 "List of `semanticdb-table' objects referring to this one.
@@ -833,7 +833,7 @@ value.")
833(make-variable-buffer-local 'semanticdb-project-system-databases) 833(make-variable-buffer-local 'semanticdb-project-system-databases)
834 834
835(defvar semanticdb-search-system-databases t 835(defvar semanticdb-search-system-databases t
836 "Non nil if search routines are to include a system database.") 836 "Non-nil if search routines are to include a system database.")
837 837
838(defun semanticdb-current-database-list (&optional dir) 838(defun semanticdb-current-database-list (&optional dir)
839 "Return a list of databases associated with the current buffer. 839 "Return a list of databases associated with the current buffer.
diff --git a/lisp/cedet/semantic/imenu.el b/lisp/cedet/semantic/imenu.el
index 009d04dbd75..5119eb62f3d 100644
--- a/lisp/cedet/semantic/imenu.el
+++ b/lisp/cedet/semantic/imenu.el
@@ -119,7 +119,7 @@ See `semantic-bucketize' and the FILTER argument for more details on this functi
119(make-variable-buffer-local 'semantic-imenu-sort-bucket-function) 119(make-variable-buffer-local 'semantic-imenu-sort-bucket-function)
120 120
121(defcustom semantic-imenu-index-directory nil 121(defcustom semantic-imenu-index-directory nil
122 "Non nil to index the entire directory for tags. 122 "Non-nil to index the entire directory for tags.
123Doesn't actually parse the entire directory, but displays tags for all files 123Doesn't actually parse the entire directory, but displays tags for all files
124currently listed in the current Semantic database. 124currently listed in the current Semantic database.
125This variable has no meaning if semanticdb is not active." 125This variable has no meaning if semanticdb is not active."
diff --git a/lisp/cedet/semantic/java.el b/lisp/cedet/semantic/java.el
index 7f9c93b906f..b103c3ce157 100644
--- a/lisp/cedet/semantic/java.el
+++ b/lisp/cedet/semantic/java.el
@@ -391,7 +391,7 @@ That is TAG `symbol-name' without the leading `@'."
391 391
392(defun semantic-java-doc-keywords-map (fun &optional property) 392(defun semantic-java-doc-keywords-map (fun &optional property)
393 "Run function FUN for each javadoc keyword. 393 "Run function FUN for each javadoc keyword.
394Return the list of FUN results. If optional PROPERTY is non nil only 394Return the list of FUN results. If optional PROPERTY is non-nil only
395call FUN for javadoc keywords which have a value for PROPERTY. FUN 395call FUN for javadoc keywords which have a value for PROPERTY. FUN
396receives two arguments: the javadoc keyword and its associated 396receives two arguments: the javadoc keyword and its associated
397'javadoc property list. It can return any value. All nil values are 397'javadoc property list. It can return any value. All nil values are
diff --git a/lisp/cedet/semantic/lex-spp.el b/lisp/cedet/semantic/lex-spp.el
index 6fe33f93110..d07dc806a48 100644
--- a/lisp/cedet/semantic/lex-spp.el
+++ b/lisp/cedet/semantic/lex-spp.el
@@ -1244,7 +1244,7 @@ For languages that use the Semantic pre-processor, this can
1244improve the accuracy of parsed files where include files 1244improve the accuracy of parsed files where include files
1245can change the state of what's parsed in the current file. 1245can change the state of what's parsed in the current file.
1246 1246
1247Note: Note implemented yet" 1247Note: Not implemented yet."
1248 :group 'semantic 1248 :group 'semantic
1249 :type 'boolean) 1249 :type 'boolean)
1250 1250
diff --git a/lisp/cedet/semantic/lex.el b/lisp/cedet/semantic/lex.el
index a6ee869c037..50e09e2359c 100644
--- a/lisp/cedet/semantic/lex.el
+++ b/lisp/cedet/semantic/lex.el
@@ -256,7 +256,7 @@ SPECS must be a list of (NAME . TOKSYM) elements, where:
256 NAME is the name of the keyword symbol to define. 256 NAME is the name of the keyword symbol to define.
257 TOKSYM is the lexical token symbol of that keyword. 257 TOKSYM is the lexical token symbol of that keyword.
258 258
259If optional argument PROPSPECS is non nil, then interpret it, and 259If optional argument PROPSPECS is non-nil, then interpret it, and
260apply those properties. 260apply those properties.
261PROPSPECS must be a list of (NAME PROPERTY VALUE) elements." 261PROPSPECS must be a list of (NAME PROPERTY VALUE) elements."
262 ;; Create the symbol hash table 262 ;; Create the symbol hash table
@@ -414,7 +414,7 @@ SPECS must be a list of (TYPE . TOKENS) elements, where:
414 MATCHER is a string or regexp a text must match to be a such 414 MATCHER is a string or regexp a text must match to be a such
415 lexical token. 415 lexical token.
416 416
417If optional argument PROPSPECS is non nil, then interpret it, and 417If optional argument PROPSPECS is non-nil, then interpret it, and
418apply those properties. 418apply those properties.
419PROPSPECS must be a list of (TYPE PROPERTY VALUE)." 419PROPSPECS must be a list of (TYPE PROPERTY VALUE)."
420 ;; Create the symbol hash table 420 ;; Create the symbol hash table
@@ -1060,7 +1060,7 @@ The collapsed tokens are saved in `semantic-lex-block-streams'."
1060;; to create new lexical analyzers. 1060;; to create new lexical analyzers.
1061 1061
1062(defcustom semantic-lex-debug-analyzers nil 1062(defcustom semantic-lex-debug-analyzers nil
1063 "Non nil means to debug analyzers with syntax protection. 1063 "Non-nil means to debug analyzers with syntax protection.
1064Only in effect if `debug-on-error' is also non-nil." 1064Only in effect if `debug-on-error' is also non-nil."
1065 :group 'semantic 1065 :group 'semantic
1066 :type 'boolean) 1066 :type 'boolean)
diff --git a/lisp/cedet/semantic/tag-ls.el b/lisp/cedet/semantic/tag-ls.el
index e4627d69ebd..ad072a40960 100644
--- a/lisp/cedet/semantic/tag-ls.el
+++ b/lisp/cedet/semantic/tag-ls.el
@@ -369,7 +369,7 @@ For these PROTECTIONs, true is returned if TAG is:
369 )) 369 ))
370 370
371(define-overloadable-function semantic-tag-abstract-p (tag &optional parent) 371(define-overloadable-function semantic-tag-abstract-p (tag &optional parent)
372 "Return non nil if TAG is abstract. 372 "Return non-nil if TAG is abstract.
373Optional PARENT is the parent tag of TAG. 373Optional PARENT is the parent tag of TAG.
374In UML, abstract methods and classes have special meaning and behavior 374In UML, abstract methods and classes have special meaning and behavior
375in how methods are overridden. In UML, abstract methods are italicized. 375in how methods are overridden. In UML, abstract methods are italicized.
@@ -393,7 +393,7 @@ See `semantic-tag-abstract-p'."
393 abs)) 393 abs))
394 394
395(define-overloadable-function semantic-tag-leaf-p (tag &optional parent) 395(define-overloadable-function semantic-tag-leaf-p (tag &optional parent)
396 "Return non nil if TAG is leaf. 396 "Return non-nil if TAG is leaf.
397Optional PARENT is the parent tag of TAG. 397Optional PARENT is the parent tag of TAG.
398In UML, leaf methods and classes have special meaning and behavior. 398In UML, leaf methods and classes have special meaning and behavior.
399 399
@@ -417,7 +417,7 @@ See `semantic-tag-leaf-p'."
417 leaf)) 417 leaf))
418 418
419(define-overloadable-function semantic-tag-static-p (tag &optional parent) 419(define-overloadable-function semantic-tag-static-p (tag &optional parent)
420 "Return non nil if TAG is static. 420 "Return non-nil if TAG is static.
421Optional PARENT is the parent tag of TAG. 421Optional PARENT is the parent tag of TAG.
422In UML, static methods and attributes mean that they are allocated 422In UML, static methods and attributes mean that they are allocated
423in the parent class, and are not instance specific. 423in the parent class, and are not instance specific.
@@ -436,7 +436,7 @@ See `semantic-tag-static-p'."
436 436
437;;;###autoload 437;;;###autoload
438(define-overloadable-function semantic-tag-prototype-p (tag) 438(define-overloadable-function semantic-tag-prototype-p (tag)
439 "Return non nil if TAG is a prototype. 439 "Return non-nil if TAG is a prototype.
440For some languages, such as C, a prototype is a declaration of 440For some languages, such as C, a prototype is a declaration of
441something without an implementation." 441something without an implementation."
442 ) 442 )
diff --git a/lisp/cedet/semantic/wisent.el b/lisp/cedet/semantic/wisent.el
index 122b5d399c0..4a759531e46 100644
--- a/lisp/cedet/semantic/wisent.el
+++ b/lisp/cedet/semantic/wisent.el
@@ -184,7 +184,7 @@ the standard function `semantic-parse-stream'."
184 ;; lookahead tokens and tokens in STREAM can be different the 184 ;; lookahead tokens and tokens in STREAM can be different the
185 ;; lookahead token is put in the variable `wisent-lex-lookahead' 185 ;; lookahead token is put in the variable `wisent-lex-lookahead'
186 ;; before calling `wisent-parse'. Wisent's lexers always pop the 186 ;; before calling `wisent-parse'. Wisent's lexers always pop the
187 ;; next lexical token from that variable when non nil, then from 187 ;; next lexical token from that variable when non-nil, then from
188 ;; the lexical input stream. 188 ;; the lexical input stream.
189 ;; 189 ;;
190 ;; The first element of STREAM is used to keep lookahead tokens 190 ;; The first element of STREAM is used to keep lookahead tokens