Mercurial > emacs
changeset 1977:ca6059bb1d6f
* frame.el (new-frame): Doc fix.
Use the term `scroll bar', instead of `scrollbar'.
* term/x-win.el, frame.el, mouse.el: Terminology changed.
* scrollbar.el: Renamed to scroll-bar.el.
author | Jim Blandy <jimb@redhat.com> |
---|---|
date | Tue, 02 Mar 1993 07:25:44 +0000 |
parents | eda7eec8f8ad |
children | d7fd2aa5185a |
files | lisp/frame.el |
diffstat | 1 files changed, 8 insertions(+), 8 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/frame.el Tue Mar 02 07:22:33 1993 +0000 +++ b/lisp/frame.el Tue Mar 02 07:25:44 1993 +0000 @@ -254,7 +254,7 @@ be given. \(minibuffer . t) - the frame should have a minibuffer -\(minibuffer . none) - the frame should have no minibuffer +\(minibuffer . nil) - the frame should have no minibuffer \(minibuffer . only) - the frame should contain only a minibuffer \(minibuffer . WINDOW) - the frame should use WINDOW as its minibuffer window. @@ -390,21 +390,21 @@ (list (cons 'auto-lower (> arg 0))))) (defun toggle-vertical-scroll-bar (arg) - "Toggle whether or not the selected frame has vertical scrollbars. -With arg, turn vertical scrollbars on if and only if arg is positive." + "Toggle whether or not the selected frame has vertical scroll bars. +With arg, turn vertical scroll bars on if and only if arg is positive." (interactive "P") (if (null arg) (setq arg - (if (cdr (assq 'vertical-scrollbars + (if (cdr (assq 'vertical-scroll-bars (frame-parameters (selected-frame)))) -1 1))) (modify-frame-parameters (selected-frame) - (list (cons 'vertical-scrollbars (> arg 0))))) + (list (cons 'vertical-scroll-bars (> arg 0))))) (defun toggle-horizontal-scroll-bar (arg) - "Toggle whether or not the selected frame has horizontal scrollbars. -With arg, turn horizontal scrollbars on if and only if arg is positive. -Horizontal scrollbars aren't implemented yet." + "Toggle whether or not the selected frame has horizontal scroll bars. +With arg, turn horizontal scroll bars on if and only if arg is positive. +Horizontal scroll bars aren't implemented yet." (interactive "P") (error "Horizontal scroll bars aren't implemented yet"))