]> git.eshelyaron.com Git - emacs.git/commitdiff
lisp/*.el, src/*.c: Doc fixes related to returning t vs non-nil
authorJuanma Barranquero <lekktu@gmail.com>
Thu, 17 Oct 2019 00:45:06 +0000 (02:45 +0200)
committerJuanma Barranquero <lekktu@gmail.com>
Thu, 17 Oct 2019 00:45:06 +0000 (02:45 +0200)
* lisp/progmodes/flymake-proc.el (flymake-proc--find-buffer-for-file):
Doc fix; return value is a buffer, not t.

* lisp/progmodes/ebrowse.el (ebrowse-member-display-p):
Doc fix; return value is the MEMBER argument, not nil.

* lisp/files.el (hack-one-local-variable-eval-safep):
* lisp/play/doctor.el (doctor-nounp, doctor-pronounp):
* lisp/progmodes/flymake-proc.el (flymake-proc--check-include):
* lisp/progmodes/js.el (js--broken-arrow-terminates-line-p):
Doc fix; a non-nil return value is not always t.

* lisp/image.el (image-type-available-p):
* lisp/simple.el (region-active-p):
* lisp/window.el (frame-root-window-p):
* src/buffer.c (Fbuffer_live_p):
* src/image.c (Finit_image_library):
* src/window.c (Fwindow_minibuffer_p):
Doc fix; a non-nil return value is always t.

* doc/lispref/minibuf.texi (Minibuffer Windows): Doc fix.

12 files changed:
doc/lispref/minibuf.texi
lisp/files.el
lisp/image.el
lisp/play/doctor.el
lisp/progmodes/ebrowse.el
lisp/progmodes/flymake-proc.el
lisp/progmodes/js.el
lisp/simple.el
lisp/window.el
src/buffer.c
src/image.c
src/window.c

index a9d6e83cf85410c058a12fc926097d4c7f07ef85..dd51181db00984cd226a2724600ed1c83bcbba25 100644 (file)
@@ -2364,8 +2364,8 @@ minibuffer window according to the selected frame.
 
 @c Emacs 19 feature
 @defun window-minibuffer-p &optional window
-This function returns non-@code{nil} if @var{window} is a minibuffer
-window.  @var{window} defaults to the selected window.
+This function returns @code{t} if @var{window} is a minibuffer window.
+@var{window} defaults to the selected window.
 @end defun
 
 The following function returns the window showing the currently active
index 40807617fae89b0bd9e33ff8f503ec815773ed19..4b364b49d84b9a52b1d4f7d8a9e9ff2bd3baccfa 100644 (file)
@@ -3853,7 +3853,7 @@ It is dangerous if either of these conditions are met:
       (hack-one-local-variable-quotep exp)))
 
 (defun hack-one-local-variable-eval-safep (exp)
-  "Return t if it is safe to eval EXP when it is found in a file."
+  "Return non-nil if it is safe to eval EXP when it is found in a file."
   (or (not (consp exp))
       ;; Detect certain `put' expressions.
       (and (eq (car exp) 'put)
index e44330fdfa96e90cf7420af1d979a1154dc0f131..66fb5fa5fc98329ab147c187f316dfff0a359967 100644 (file)
@@ -408,7 +408,7 @@ Optional DATA-P non-nil means SOURCE is a string containing image data."
 
 ;;;###autoload
 (defun image-type-available-p (type)
-  "Return non-nil if image type TYPE is available.
+  "Return t if image type TYPE is available.
 Image types are symbols like `xbm' or `jpeg'."
   (and (fboundp 'init-image-library)
        (init-image-library type)))
index b1ab6703a485dda2b7b7074ff90f353dc4e4793b..fbcdb5ebbe4ab36151d37e1fceb306c7cd88c840 100644 (file)
@@ -1023,7 +1023,7 @@ the subject noun, and return the portion of the sentence following it."
           nil))))
 
 (defun doctor-nounp (x)
-  "Return t if the symbol argument is a noun."
+  "Return non-nil if the symbol argument is a noun."
        (or (doctor-pronounp x)
            (not (or (doctor-verbp x)
                     (equal x 'not)
@@ -1031,7 +1031,7 @@ the subject noun, and return the portion of the sentence following it."
                     (doctor-modifierp x) )) ))
 
 (defun doctor-pronounp (x)
-  "Return t if the symbol argument is a pronoun."
+  "Return non-nil if the symbol argument is a pronoun."
   (memq x '(
        i me mine myself
        we us ours ourselves ourself
index 733e3735821d58aae434231d2b95a7b050b2fd3c..eb0ec87a2221414099e0b1702c1225a4858287eb 100644 (file)
@@ -2641,7 +2641,8 @@ means the member buffer is standalone.  CLASS is its class."
 
 
 (defun ebrowse-member-display-p (member)
-  "Return t if MEMBER must be displayed under the current filter settings."
+  "Check if MEMBER must be displayed under the current filter settings.
+If so, return MEMBER; otherwise return nil."
   (if (and (aref ebrowse--filters (ebrowse-ms-visibility member))
           (or (null ebrowse--const-display-flag)
               (ebrowse-const-p member))
index f08ba2f36817c462dcd2bcce90be7a3e7f3a9508..571ee170e3229258df64488374d5c067018ec55d 100644 (file)
@@ -444,7 +444,7 @@ instead of reading master file from disk."
 
 (defun flymake-proc--check-include (source-file-name inc-name include-dirs)
   "Check if SOURCE-FILE-NAME can be found in include path.
-Return t if it can be found via include path using INC-NAME."
+Return non-nil if it can be found via include path using INC-NAME."
   (if (file-name-absolute-p inc-name)
       (flymake-proc--same-files source-file-name inc-name)
     (while (and include-dirs
@@ -458,7 +458,7 @@ Return t if it can be found via include path using INC-NAME."
 
 (defun flymake-proc--find-buffer-for-file (file-name)
   "Check if there exists a buffer visiting FILE-NAME.
-Return t if so, nil if not."
+Return the buffer if it exists, nil if not."
   (let ((buffer-name (get-file-buffer file-name)))
     (if buffer-name
        (get-buffer buffer-name))))
index 8d457a28ec2e1a7695a9530241324b4a584708cc..599923dd2790e4c1e7494f01060a75e2768ba93c 100644 (file)
@@ -2703,7 +2703,7 @@ Whitespace and comments around the arrow are ignored.")
 
 (defun js--broken-arrow-terminates-line-p ()
   "Helper function for `js--proper-indentation'.
-Return t if the last non-comment, non-whitespace token of the
+Return non-nil if the last non-comment, non-whitespace token of the
 current line is the \"=>\" token (of an arrow function)."
   (let ((from (point)))
     (end-of-line)
index b733f76ac760eea79c8872467a516d325ae6a9c6..e44b877931b6e7949a244734518113a8e032f978 100644 (file)
@@ -5685,7 +5685,7 @@ For some commands, it may be appropriate to ignore the value of
        t))
 
 (defun region-active-p ()
-  "Return non-nil if Transient Mark mode is enabled and the mark is active.
+  "Return t if Transient Mark mode is enabled and the mark is active.
 
 Some commands act specially on the region when Transient Mark
 mode is enabled.  Usually, such commands should use
index af35f9abe6b5e04e4b236881334c66b596a00450..058e89df7c70bc1ddea4c5a2278a79f811432fb2 100644 (file)
@@ -3867,7 +3867,7 @@ POSITION defaults to the value of `window-point' of WINDOW."
              (+ (nth 1 edges) (nth 1 pos-in-window)))))))
 \f
 (defun frame-root-window-p (window)
-  "Return non-nil if WINDOW is the root window of its frame."
+  "Return t if WINDOW is the root window of its frame."
   (eq window (frame-root-window window)))
 
 (defun window--subtree (window &optional next)
index 8cb28d8aa7062677a83b88db168d70228229dcdd..80eaa971a3aebae0c0107ee243d40ba11e24a5a3 100644 (file)
@@ -383,7 +383,7 @@ nsberror (Lisp_Object spec)
 }
 \f
 DEFUN ("buffer-live-p", Fbuffer_live_p, Sbuffer_live_p, 1, 1, 0,
-       doc: /* Return non-nil if OBJECT is a buffer which has not been killed.
+       doc: /* Return t if OBJECT is a buffer which has not been killed.
 Value is nil if OBJECT is not a buffer or if it has been killed.  */)
   (Lisp_Object object)
 {
index 7cf1bc4c362378e46be502e0f30fa1f00854f862..08e420837a097b17895cc09ce8cdb526ef144230 100644 (file)
@@ -10053,7 +10053,7 @@ The list of capabilities can include one or more of the following:
 
 DEFUN ("init-image-library", Finit_image_library, Sinit_image_library, 1, 1, 0,
        doc: /* Initialize image library implementing image type TYPE.
-Return non-nil if TYPE is a supported image type.
+Return t if TYPE is a supported image type.
 
 If image libraries are loaded dynamically (currently only the case on
 MS-Windows), load the library for TYPE if it is not yet loaded, using
index 1e6e148bf486dd3d0437f2b291aa2780dcf8eb6b..e4bb2daeb38f37374c8dca6321800674afc92add 100644 (file)
@@ -384,7 +384,7 @@ If FRAME is omitted or nil, it defaults to the selected frame.  */)
 
 DEFUN ("window-minibuffer-p", Fwindow_minibuffer_p,
        Swindow_minibuffer_p, 0, 1, 0,
-       doc: /* Return non-nil if WINDOW is a minibuffer window.
+       doc: /* Return t if WINDOW is a minibuffer window.
 WINDOW must be a valid window and defaults to the selected one.  */)
   (Lisp_Object window)
 {