File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 4040 :group 'tool
4141 :link '(url-link :tag " Repository" " https://github.com/jcs-elpa/better-scroll" ))
4242
43- (defcustom better-scroll-allow-boundry -movement t
44- " Allow cursor moves to boundry point after moving to the beginning/end of buffer."
43+ (defcustom better-scroll-allow-boundary -movement t
44+ " Allow cursor moves to boundary point after moving to the beginning/end of buffer."
4545 :type 'boolean
4646 :group 'better-scroll )
4747
9898 (let ((prev-pt (point )) (prev-col (current-column )))
9999 (funcall fnc)
100100 (move-to-column prev-col)
101- (when (and better-scroll-allow-boundry -movement (= (point ) prev-pt))
101+ (when (and better-scroll-allow-boundary -movement (= (point ) prev-pt))
102102 (goto-char (cl-case dc ('down (point-min )) ('up (point-max )))))))
103103
104104;;;### autoload
You can’t perform that action at this time.
0 commit comments