branch: elpa/doc-show-inline
commit 843eb27068e8bbd86c1e1d789efd3d3da4b4373e
Author: Campbell Barton <[email protected]>
Commit: Campbell Barton <[email protected]>
Cleanup: use null instead of not
---
doc-show-inline.el | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/doc-show-inline.el b/doc-show-inline.el
index 9ffd70eb94d..7d02ae3f6f9 100644
--- a/doc-show-inline.el
+++ b/doc-show-inline.el
@@ -345,7 +345,7 @@ the point should not be moved by this function."
(cond
;; Ensure the comment is not a trailing comment of a previous line.
- ((not
+ ((null
(eq
pos-beg-of-line
(save-excursion
@@ -362,7 +362,7 @@ the point should not be moved by this function."
;; Optionally exclude blank lines between the comment and the
function definition.
((and
;; Checking blank lines?
- (not (zerop doc-show-inline-exclude-blank-lines))
+ (null (zerop doc-show-inline-exclude-blank-lines))
(let ((blank-lines 0))
(save-excursion
(goto-char pos-end)