jaalto/project--emacs-tiny-tools

folding.el bug

Closed this issue · 1 comments

Line 205
(if (eq folding-shift-in-on-goto 'show)
should be replaced with
(if folding-shift-in-on-goto

because:
(defcustom folding-shift-in-on-goto t [..]
:type 'boolean
:group 'folding)

otherwise goto-line doesn't work properly

Fix pushed to devel branch (f1d09ac). Thank you for reporting this.