summaryrefslogtreecommitdiff
path: root/lisp/textmodes
diff options
context:
space:
mode:
authorJuanma Barranquero <lekktu@gmail.com>2019-10-14 23:52:21 +0200
committerJuanma Barranquero <lekktu@gmail.com>2019-10-14 23:53:16 +0200
commitd4cfe67e8ae4392fc1f01879f6d3a9a8b6947ac1 (patch)
tree55acfca7542deae88ac291b238fef293fc59b619 /lisp/textmodes
parentcb29a3816489a9bb5472bb3dfe4b64687419cb2e (diff)
downloademacs-d4cfe67e8ae4392fc1f01879f6d3a9a8b6947ac1.tar.gz
lisp/*.el: Force non-nil result to t, to match docstring
* lisp/ido.el (ido-ignore-item-p): * lisp/simple.el (use-region-p): * lisp/whitespace.el (whitespace-style-face-p) (whitespace-style-mark-p): * lisp/calendar/cal-islam.el (calendar-islamic-leap-year-p): * lisp/mail/rmail.el (rmail-is-text-p): * lisp/mh-e/mh-alias.el (mh-alias-for-from-p): * lisp/net/imap.el (imap-message-flag-permanent-p): * lisp/progmodes/tcl.el (tcl-real-comment-p): * lisp/textmodes/table.el (table--point-in-cell-p): Normalize boolean result.
Diffstat (limited to 'lisp/textmodes')
-rw-r--r--lisp/textmodes/table.el3
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/textmodes/table.el b/lisp/textmodes/table.el
index f684f4e4ca9..94dcaea0ba6 100644
--- a/lisp/textmodes/table.el
+++ b/lisp/textmodes/table.el
@@ -4938,7 +4938,8 @@ When optional LOCATION is provided the test is performed at that location."
(save-excursion
(goto-char location)
(table--probe-cell))
- (table--probe-cell))))
+ (table--probe-cell))
+ t))
(defun table--region-in-cell-p (beg end)
"Return t when location BEG and END are in a valid table cell in the current buffer."