1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2025-01-13 16:38:14 +00:00

(toggle-scroll-bar): Call prefix-numeric-value.

This commit is contained in:
Karl Heuer 1997-10-15 23:40:43 +00:00
parent 21de5941c9
commit 19c6feac9f

View File

@ -126,7 +126,8 @@ when they are turned on; if it is nil, they go on the left."
(setq arg
(if (cdr (assq 'vertical-scroll-bars
(frame-parameters (selected-frame))))
-1 1)))
-1 1))
(setq arg (prefix-numeric-value arg)))
(modify-frame-parameters (selected-frame)
(list (cons 'vertical-scroll-bars
(if (> arg 0)