mirror of
https://git.savannah.gnu.org/git/emacs/org-mode.git
synced 2024-11-26 07:33:39 +00:00
org-indent: Add org-indent' face to
org-indent-boundary-char'
* lisp/org-indent.el (org-indent--compute-prefixes): When `org-indent-boundary-char' doens't have `org-indent' face property in Org Indent mode, it causes an appearance issue. When you use Org mode with Whitespace mode, you can't control `org-indent-boundary-char''s face neither `whitespace-space' face nor `org-indent' face. TINYCHANGE
This commit is contained in:
parent
638f329838
commit
bdf92cfcf7
@ -150,10 +150,11 @@ useful to make it ever so slightly different."
|
||||
;; Text line prefixes.
|
||||
(aset org-indent--text-line-prefixes
|
||||
n
|
||||
(concat (org-add-props (make-string (+ n indentation) ?\s)
|
||||
nil 'face 'org-indent)
|
||||
(and (> n 0)
|
||||
(char-to-string org-indent-boundary-char)))))))
|
||||
(org-add-props
|
||||
(concat (make-string (+ n indentation) ?\s)
|
||||
(and (> n 0)
|
||||
(char-to-string org-indent-boundary-char)))
|
||||
nil 'face 'org-indent)))))
|
||||
|
||||
(defsubst org-indent-remove-properties (beg end)
|
||||
"Remove indentations between BEG and END."
|
||||
|
Loading…
Reference in New Issue
Block a user