emacs-orgmode@gnu.org archives
 help / color / mirror / code / Atom feed
From: Rasmus <rasmus@gmx.us>
To: emacs-orgmode@gnu.org
Subject: [bug] org-indent
Date: Fri, 23 Jun 2017 12:15:18 +0200	[thread overview]
Message-ID: <871sqbovrd.fsf@gmx.us> (raw)

Hi,

There's a bug in ‘org-indent--compute-prefixes’ near ";; Inline tasks line
prefixes".

If (bound-and-true-p org-inlinetask-show-first-star) is non-nil, then Org
tries to compute (substring heading-prefix 1).  But the initial value of
‘heading-prefix’ seems to be "", at least some of the time (if
‘indentation’ is 0).  In my Emacs this results in an error. 

Adding an extra check seems to fix it, but I’m not sure if the substring
part is what needs fixing.

	;; Inline tasks line prefixes
	(aset org-indent--inlinetask-line-prefixes
	      n
	      (org-add-props (if (and (bound-and-true-p org-inlinetask-show-first-star)
                                  (org-string-nw-p heading-prefix))
                             (concat org-indent-inlinetask-first-star
                                     (substring heading-prefix 1))
			       heading-prefix)
		  nil 'face 'org-indent)))


Thanks,
Rasmus

-- 
Dung makes an excellent fertilizer

             reply	other threads:[~2017-06-23 10:15 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-06-23 10:15 Rasmus [this message]
2017-06-23 11:53 ` [bug] org-indent Nicolas Goaziou

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

  List information: https://www.orgmode.org/

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=871sqbovrd.fsf@gmx.us \
    --to=rasmus@gmx.us \
    --cc=emacs-orgmode@gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).