[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[nongnu] elpa/markdown-mode c51871ab38 3/4: Don't use `bound-and-true-p`
From: |
ELPA Syncer |
Subject: |
[nongnu] elpa/markdown-mode c51871ab38 3/4: Don't use `bound-and-true-p` for visual-line-mode |
Date: |
Sun, 7 Jan 2024 04:00:11 -0500 (EST) |
branch: elpa/markdown-mode
commit c51871ab38c1459d772237df6f67009650938bb9
Author: Tomohisa Kuranari <tomohisa.kuranari@gmail.com>
Commit: Tomohisa Kuranari <tomohisa.kuranari@gmail.com>
Don't use `bound-and-true-p` for visual-line-mode
---
markdown-mode.el | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
diff --git a/markdown-mode.el b/markdown-mode.el
index 170603811a..8094e0258f 100644
--- a/markdown-mode.el
+++ b/markdown-mode.el
@@ -6534,7 +6534,7 @@ With argument N not nil or 1, move forward N - 1 lines
first."
(`(,C-a . ,_) C-a) (_ markdown-special-ctrl-a/e)))
deactivate-mark)
;; First move to a visible line.
- (if (bound-and-true-p visual-line-mode)
+ (if visual-line-mode
(beginning-of-visual-line n)
(move-beginning-of-line n)
;; `move-beginning-of-line' may leave point after invisible
@@ -6549,7 +6549,7 @@ With argument N not nil or 1, move forward N - 1 lines
first."
;; `beginning-of-visual-line' left point before logical beginning
;; of line: point is at the beginning of a visual line. Bail
;; out.
- ((and (bound-and-true-p visual-line-mode) (not (bolp))))
+ ((and visual-line-mode (not (bolp))))
((looking-at markdown-regex-header-atx)
;; At a header, special position is before the title.
(let ((refpos (match-beginning 2))
@@ -6594,7 +6594,7 @@ With argument N not nil or 1, move forward N - 1 lines
first."
(`(,_ . ,C-e) C-e) (_ markdown-special-ctrl-a/e)))
deactivate-mark)
;; First move to a visible line.
- (if (bound-and-true-p visual-line-mode)
+ (if visual-line-mode
(beginning-of-visual-line n)
(move-beginning-of-line n))
(cond
@@ -6603,7 +6603,7 @@ With argument N not nil or 1, move forward N - 1 lines
first."
(forward-line 0)
(and (looking-at markdown-regex-header-atx) (match-end 3)))
(let ((refpos (match-end 2))
- (visual-end (and (bound-and-true-p visual-line-mode)
+ (visual-end (and visual-line-mode
(save-excursion
(end-of-visual-line)
(point)))))
@@ -6629,7 +6629,7 @@ With argument N not nil or 1, move forward N - 1 lines
first."
(when (and markdown-hide-markup
(equal (get-char-property (point) 'display) ""))
(setq disable-point-adjustment t))))
- ((bound-and-true-p visual-line-mode)
+ (visual-line-mode
(let ((bol (line-beginning-position)))
(end-of-visual-line)
;; If `end-of-visual-line' gets us past the ellipsis at the