mirror of
https://github.com/pestctrl/emacs-config.git
synced 2026-02-16 16:24:18 +00:00
Don't double indent the last time, just once
This commit is contained in:
parent
c909cd9f6a
commit
d290f64bd0
1 changed files with 17 additions and 9 deletions
|
|
@ -227,6 +227,17 @@
|
|||
|
||||
(overwrite-mode -1)
|
||||
|
||||
(setq remaining (reverse new-list)
|
||||
arrow-length (+ 2 arrow-length))
|
||||
|
||||
(when (not (zerop (length remaining)))
|
||||
(let ((start (save-excursion
|
||||
(goto-line super-start)
|
||||
(line-beginning-position)))
|
||||
(end (save-excursion
|
||||
(goto-line super-end)
|
||||
(line-beginning-position))))
|
||||
(string-rectangle start end " "))))
|
||||
(let ((start (save-excursion
|
||||
(goto-line super-start)
|
||||
(line-beginning-position)))
|
||||
|
|
@ -234,9 +245,6 @@
|
|||
(goto-line super-end)
|
||||
(line-beginning-position))))
|
||||
(string-rectangle start end " "))
|
||||
|
||||
(setq remaining (reverse new-list)
|
||||
arrow-length (+ 2 arrow-length)))
|
||||
(setq cfmap-width arrow-length))))
|
||||
|
||||
(provide 'make-cf-map)
|
||||
|
|
|
|||
Loading…
Reference in a new issue