diff options
author | Štěpán Němec <stepnem@gmail.com> | 2020-03-01 18:50:14 +0100 |
---|---|---|
committer | Štěpán Němec <stepnem@gmail.com> | 2020-04-18 17:10:02 +0200 |
commit | 067b0705986572e42687334c4eaf32988f22f680 (patch) | |
tree | 70129d8ec8e109cb64f895e462298adf2c2636e8 /lisp | |
parent | f3b62b6c62c41d2e5d15418ea940bce6b11bdf7d (diff) | |
download | emacs-067b0705986572e42687334c4eaf32988f22f680.tar.gz emacs-067b0705986572e42687334c4eaf32988f22f680.tar.bz2 emacs-067b0705986572e42687334c4eaf32988f22f680.zip |
; Fix some typos and doc issues (bug#40695)
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/emacs-lisp/bytecomp.el | 2 | ||||
-rw-r--r-- | lisp/emacs-lisp/checkdoc.el | 2 | ||||
-rw-r--r-- | lisp/emacs-lisp/cl-macs.el | 8 | ||||
-rw-r--r-- | lisp/emacs-lisp/elp.el | 2 | ||||
-rw-r--r-- | lisp/emacs-lisp/generator.el | 32 | ||||
-rw-r--r-- | lisp/emacs-lisp/gv.el | 2 | ||||
-rw-r--r-- | lisp/emacs-lisp/lisp-mode.el | 2 | ||||
-rw-r--r-- | lisp/image/exif.el | 4 | ||||
-rw-r--r-- | lisp/international/mule-util.el | 2 | ||||
-rw-r--r-- | lisp/json.el | 2 | ||||
-rw-r--r-- | lisp/minibuffer.el | 4 | ||||
-rw-r--r-- | lisp/obsolete/cl.el | 2 | ||||
-rw-r--r-- | lisp/startup.el | 8 | ||||
-rw-r--r-- | lisp/subr.el | 6 | ||||
-rw-r--r-- | lisp/textmodes/ispell.el | 10 |
15 files changed, 42 insertions, 46 deletions
diff --git a/lisp/emacs-lisp/bytecomp.el b/lisp/emacs-lisp/bytecomp.el index 73bbc2fe182..688f8cfa4db 100644 --- a/lisp/emacs-lisp/bytecomp.el +++ b/lisp/emacs-lisp/bytecomp.el @@ -677,7 +677,7 @@ Each element is (INDEX . VALUE)") (byte-defop 112 1 byte-current-buffer) (byte-defop 113 0 byte-set-buffer) (byte-defop 114 0 byte-save-current-buffer - "To make a binding to record the current buffer") + "to make a binding to record the current buffer") (byte-defop 115 0 byte-set-mark-OBSOLETE) (byte-defop 116 1 byte-interactive-p-OBSOLETE) diff --git a/lisp/emacs-lisp/checkdoc.el b/lisp/emacs-lisp/checkdoc.el index fa5d1cff417..797493743c0 100644 --- a/lisp/emacs-lisp/checkdoc.el +++ b/lisp/emacs-lisp/checkdoc.el @@ -2133,7 +2133,7 @@ buffer, otherwise stop after the first error." (checkdoc-ispell-init) (unless checkdoc-spellcheck-documentation-flag ;; this happens when (checkdoc-ispell-init) can't start `ispell-program-name' - (user-error "No spellchecker installed: check the variable `ispell-program-name'.")) + (user-error "No spellchecker installed: check the variable `ispell-program-name'")) (save-excursion (skip-chars-forward "^a-zA-Z") (let (word sym case-fold-search err word-beginning word-end) diff --git a/lisp/emacs-lisp/cl-macs.el b/lisp/emacs-lisp/cl-macs.el index 9edd85e36bf..d56f4151df7 100644 --- a/lisp/emacs-lisp/cl-macs.el +++ b/lisp/emacs-lisp/cl-macs.el @@ -776,7 +776,7 @@ The result of the body appears to the compiler as a quoted constant." "Eval EXPR and choose among clauses on that value. Each clause looks like (KEYLIST BODY...). EXPR is evaluated and compared against each key in each KEYLIST; the corresponding BODY -is evaluated. If no clause succeeds, cl-case returns nil. A +is evaluated. If no clause succeeds, this macro returns nil. A single non-nil atom may be used in place of a KEYLIST of one atom. A KEYLIST of t or `otherwise' is allowed only in the final clause, and matches if no other keys match. Key values are @@ -815,10 +815,10 @@ compared by `eql'. ;;;###autoload (defmacro cl-typecase (expr &rest clauses) - "Evals EXPR, chooses among clauses on that value. + "Eval EXPR and choose among clauses on that value. Each clause looks like (TYPE BODY...). EXPR is evaluated and, if it satisfies TYPE, the corresponding BODY is evaluated. If no clause succeeds, -cl-typecase returns nil. A TYPE of t or `otherwise' is allowed only in the +this macro returns nil. A TYPE of t or `otherwise' is allowed only in the final clause, and matches if no other keys match. \n(fn EXPR (TYPE BODY...)...)" (declare (indent 1) @@ -2707,7 +2707,7 @@ pairs for that slot. Supported keywords for slots are: - `:read-only': If this has a non-nil value, that slot cannot be set via `setf'. - `:documentation': this is a docstring describing the slot. -- `:type': the type of the field; currently unused. +- `:type': the type of the field; currently only used for documentation. \(fn NAME &optional DOCSTRING &rest SLOTS)" (declare (doc-string 2) (indent 1) diff --git a/lisp/emacs-lisp/elp.el b/lisp/emacs-lisp/elp.el index 7dd3cbd1a21..f68c0faf09d 100644 --- a/lisp/emacs-lisp/elp.el +++ b/lisp/emacs-lisp/elp.el @@ -238,7 +238,7 @@ FUNSYM must be a symbol of a defined function." ;; The info vector data structure is a 2 element vector. The 0th ;; element is the call-count, i.e. the total number of times this ;; function has been entered. This value is bumped up on entry to - ;; the function so that non-local exists are still recorded. TBD: + ;; the function so that non-local exits are still recorded. TBD: ;; I haven't tested non-local exits at all, so no guarantees. ;; ;; The 1st element is the total amount of time in seconds that has diff --git a/lisp/emacs-lisp/generator.el b/lisp/emacs-lisp/generator.el index 8a9b01d580f..26ab2679e22 100644 --- a/lisp/emacs-lisp/generator.el +++ b/lisp/emacs-lisp/generator.el @@ -59,7 +59,7 @@ ;; This raw form of iteration is general, but a bit awkward to use, so ;; this library also provides some convenience functions: ;; -;; `iter-do' is like `cl-do', except that instead of walking a list, +;; `iter-do' is like `dolist', except that instead of walking a list, ;; it walks an iterator. `cl-loop' is also extended with a new ;; keyword, `iter-by', that iterates over an iterator. ;; @@ -67,7 +67,7 @@ ;;; Implementation: ;; -;; The internal cps transformation code uses the cps- namespace. +;; The internal CPS transformation code uses the cps- namespace. ;; Iteration functions use the `iter-' namespace. Generator functions ;; are somewhat less efficient than conventional elisp routines, ;; although we try to avoid CPS transformation on forms that do not @@ -89,13 +89,13 @@ `(gensym (format ,fmt ,@args))) (defvar cps--dynamic-wrappers '(identity) - "List of transformer functions to apply to atomic forms we -evaluate in CPS context.") + "List of functions to apply to atomic forms. +These are transformer functions applied to atomic forms evaluated +in CPS context.") (defconst cps-standard-special-forms '(setq setq-default throw interactive) - "List of special forms that we treat just like ordinary - function applications." ) + "List of special forms treated just like ordinary function applications." ) (defun cps--trace-funcall (func &rest args) (message "%S: args=%S" func args) @@ -118,17 +118,15 @@ evaluate in CPS context.") (error "%s not supported in generators" ,function))) (defmacro cps--with-value-wrapper (wrapper &rest body) - "Continue generating CPS code with an atomic-form wrapper -to the current stack of such wrappers. WRAPPER is a function that -takes a form and returns a wrapped form. + "Evaluate BODY with WRAPPER added to the stack of atomic-form wrappers. +WRAPPER is a function that takes an atomic form and returns a wrapped form. Whenever we generate an atomic form (i.e., a form that can't `iter-yield'), we first (before actually inserting that form in our generated code) pass that form through all the transformer functions. We use this facility to wrap forms that can transfer control flow non-locally in goo that diverts this control flow to -the CPS state machinery. -" +the CPS state machinery." (declare (indent 1)) `(let ((cps--dynamic-wrappers (cons @@ -153,7 +151,7 @@ DYNAMIC-VAR bound to STATIC-VAR." ,@body)) (defun cps--add-state (kind body) - "Create a new CPS state with body BODY and return the state's name." + "Create a new CPS state of KIND with BODY and return the state's name." (declare (indent 1)) (let* ((state (cps--gensym "cps-state-%s-" kind))) (push (list state body cps--cleanup-function) cps--states) @@ -170,14 +168,12 @@ DYNAMIC-VAR bound to STATIC-VAR." (and (fboundp handler) handler))) (defvar cps-inhibit-atomic-optimization nil - "When non-nil, always rewrite forms into cps even when they -don't yield.") + "When non-nil, always rewrite forms into CPS even when they don't yield.") (defvar cps--yield-seen) (defun cps--atomic-p (form) - "Return whether the given form never yields." - + "Return nil if FORM can yield, non-nil otherwise." (and (not cps-inhibit-atomic-optimization) (let* ((cps--yield-seen)) (ignore (macroexpand-all @@ -649,8 +645,8 @@ modified copy." (defun iter-yield (value) "When used inside a generator, yield control to caller. The caller of `iter-next' receives VALUE, and the next call to -`iter-next' resumes execution at the previous -`iter-yield' point." +`iter-next' resumes execution with the form immediately following this +`iter-yield' call." (identity value) (error "`iter-yield' used outside a generator")) diff --git a/lisp/emacs-lisp/gv.el b/lisp/emacs-lisp/gv.el index b43e53b9d27..065a9688770 100644 --- a/lisp/emacs-lisp/gv.el +++ b/lisp/emacs-lisp/gv.el @@ -38,7 +38,7 @@ ;; ;; Instead, we use here a higher-order approach: instead ;; of a 5-tuple, a place-expander returns a function. -;; If you think about types, the old approach return things of type +;; If you think about types, the old approach returns things of type ;; {vars: List Var, values: List Exp, ;; stores: List Var, getter: Exp, setter: Exp} ;; whereas the new approach returns a function of type diff --git a/lisp/emacs-lisp/lisp-mode.el b/lisp/emacs-lisp/lisp-mode.el index fbbd389bf96..fa857cd4c6b 100644 --- a/lisp/emacs-lisp/lisp-mode.el +++ b/lisp/emacs-lisp/lisp-mode.el @@ -535,7 +535,7 @@ This will generate compile-time constants from BINDINGS." ;; Support backtrace mode. (defconst lisp-el-font-lock-keywords-for-backtraces lisp-el-font-lock-keywords - "Default highlighting from Emacs Lisp mod used in Backtrace mode.") + "Default highlighting from Emacs Lisp mode used in Backtrace mode.") (defconst lisp-el-font-lock-keywords-for-backtraces-1 lisp-el-font-lock-keywords-1 "Subdued highlighting from Emacs Lisp mode used in Backtrace mode.") (defconst lisp-el-font-lock-keywords-for-backtraces-2 diff --git a/lisp/image/exif.el b/lisp/image/exif.el index 065456dc318..6aeb52c726d 100644 --- a/lisp/image/exif.el +++ b/lisp/image/exif.el @@ -95,7 +95,7 @@ mirrored or not.") "Parse FILE (a JPEG file) and return the Exif data, if any. The return value is a list of Exif items. -If the data is invalid, an `exif-error' is signalled." +If the data is invalid, an `exif-error' is signaled." (with-temp-buffer (set-buffer-multibyte nil) (insert-file-contents-literally file) @@ -105,7 +105,7 @@ If the data is invalid, an `exif-error' is signalled." "Parse BUFFER (which should be a JPEG file) and return the Exif data, if any. The return value is a list of Exif items. -If the data is invalid, an `exif-error' is signalled." +If the data is invalid, an `exif-error' is signaled." (setq buffer (or buffer (current-buffer))) (with-current-buffer buffer (if enable-multibyte-characters diff --git a/lisp/international/mule-util.el b/lisp/international/mule-util.el index caa5747817c..5cc10b1315a 100644 --- a/lisp/international/mule-util.el +++ b/lisp/international/mule-util.el @@ -75,7 +75,7 @@ unless the display width of STR is equal to or less than the display width of ELLIPSIS. If it is non-nil and not a string, then ELLIPSIS defaults to `truncate-string-ellipsis'. -If ELLIPSIS-TEXT-PROPERTY in non-nil, a too-long string will not +If ELLIPSIS-TEXT-PROPERTY is non-nil, a too-long string will not be truncated, but instead the elided parts will be covered by a `display' text property showing the ellipsis." (or start-column diff --git a/lisp/json.el b/lisp/json.el index 18d7fda8822..ac323dac295 100644 --- a/lisp/json.el +++ b/lisp/json.el @@ -735,7 +735,7 @@ you will get the following structure returned: OBJECT should have a structure like one returned by `json-read'. If an error is detected during encoding, an error based on -`json-error' is signalled." +`json-error' is signaled." (cond ((memq object (list t json-null json-false)) (json-encode-keyword object)) ((stringp object) (json-encode-string object)) diff --git a/lisp/minibuffer.el b/lisp/minibuffer.el index b81f778eb4f..f6e2b236f3e 100644 --- a/lisp/minibuffer.el +++ b/lisp/minibuffer.el @@ -163,8 +163,8 @@ perform completion, no matter what ACTION is. If ACTION is `metadata' or a list where the first element is `boundaries', return nil. If ACTION is nil, this function works -like `try-completion'; if it's t, this function works like -`all-completion'; and any other values makes it work like +like `try-completion'; if it is t, this function works like +`all-completion'; and any other value makes it work like `test-completion'." (cond ((functionp collection) (funcall collection string predicate action)) diff --git a/lisp/obsolete/cl.el b/lisp/obsolete/cl.el index 1da4289b695..20bffffd781 100644 --- a/lisp/obsolete/cl.el +++ b/lisp/obsolete/cl.el @@ -509,7 +509,7 @@ This method shows how to handle `setf's to places of the form ARGLIST, as if NAME were going to be expanded as a macro, then the BODY forms are executed and must return a list of five elements: a temporary-variables list, a value-forms list, a store-variables list -\(of length one), a store-form, and an access- form. +\(of length one), a store-form, and an access-form. See `gv-define-expander', and `gv-define-setter' for better and simpler ways to define setf-methods." diff --git a/lisp/startup.el b/lisp/startup.el index 5af264e3ef7..bff10003f84 100644 --- a/lisp/startup.el +++ b/lisp/startup.el @@ -352,11 +352,11 @@ Setting `init-file-user' does not prevent Emacs from loading (defcustom site-run-file (purecopy "site-start") "File containing site-wide run-time initializations. -This file is loaded at run-time before `~/.emacs'. It contains inits -that need to be in place for the entire site, but which, due to their -higher incidence of change, don't make sense to put into Emacs's +This file is loaded at run-time before `user-init-file'. It contains +inits that need to be in place for the entire site, but which, due to +their higher incidence of change, don't make sense to put into Emacs's dump file. Thus, the run-time load order is: 1. file described in -this variable, if non-nil; 2. `~/.emacs'; 3. `default.el'. +this variable, if non-nil; 2. `user-init-file'; 3. `default.el'. Don't use the `site-start.el' file for things some users may not like. Put them in `default.el' instead, so that users can more easily diff --git a/lisp/subr.el b/lisp/subr.el index a744cfddfd4..33194e4ffa2 100644 --- a/lisp/subr.el +++ b/lisp/subr.el @@ -385,7 +385,7 @@ entry to the debugger, even when `debug-on-error' is non-nil. This can be overridden by `debug-ignored-errors'. To signal with MESSAGE without interpreting format characters -like `%', `\\=`' and `\\='', use (error \"%s\" MESSAGE). +like `%', `\\=`' and `\\='', use (user-error \"%s\" MESSAGE). In Emacs, the convention is that error messages start with a capital letter but *do not* end with a period. Please follow this convention for the sake of consistency." @@ -3290,7 +3290,7 @@ alternatives." (defun function-get (f prop &optional autoload) "Return the value of property PROP of function F. -If AUTOLOAD is non-nil and F is autoloaded, try to autoload it +If AUTOLOAD is non-nil and F is autoloaded, try to load it in the hope that it will set PROP. If AUTOLOAD is `macro', do it only if it's an autoloaded macro." (let ((val nil)) @@ -4997,7 +4997,7 @@ The properties used on SYMBOL are `composefunc', `sendfunc', (defun backtrace-frames (&optional base) "Collect all frames of current backtrace into a list. If non-nil, BASE should be a function, and frames before its -nearest activation frames are discarded." +nearest activation frame are discarded." (let ((frames nil)) (mapbacktrace (lambda (&rest frame) (push frame frames)) (or base 'backtrace-frames)) diff --git a/lisp/textmodes/ispell.el b/lisp/textmodes/ispell.el index a9fbd2f04cb..65f61644b6d 100644 --- a/lisp/textmodes/ispell.el +++ b/lisp/textmodes/ispell.el @@ -800,8 +800,8 @@ Otherwise returns the library directory name, if that is defined." (defun ispell-create-debug-buffer (&optional append) "Create an ispell debug buffer for debugging output. -If APPEND is non-nil, append the info to previous buffer if exists, -otherwise is reset. Returns name of ispell debug buffer. +If APPEND is non-nil, add output to the old buffer if it exists, +otherwise the buffer is erased first. Returns the debug buffer. See `ispell-buffer-with-debug' for an example of use." (let ((ispell-debug-buffer (get-buffer-create "*ispell-debug*"))) (with-current-buffer ispell-debug-buffer @@ -812,7 +812,7 @@ See `ispell-buffer-with-debug' for an example of use." ispell-debug-buffer)) (defsubst ispell-print-if-debug (format &rest args) - "Print message using FORMAT and ARGS to `ispell-debug-buffer' buffer if enabled." + "Print message using FORMAT and ARGS to `ispell-debug-buffer' if enabled." (if (boundp 'ispell-debug-buffer) (with-current-buffer ispell-debug-buffer (goto-char (point-max)) @@ -3618,8 +3618,8 @@ Returns the sum SHIFT due to changes in word replacements." ;;;###autoload (defun ispell-buffer-with-debug (&optional append) - "`ispell-buffer' with some output sent to `ispell-debug-buffer' buffer. -If APPEND is non-n il, append the info to previous buffer if exists." + "`ispell-buffer' with some output sent to `ispell-debug-buffer'. +If APPEND is non-nil, don't erase previous debugging output." (interactive) (let ((ispell-debug-buffer (ispell-create-debug-buffer append))) (ispell-buffer))) |