diff options
author | Jim Blandy <jimb@redhat.com> | 1992-07-15 02:24:58 +0000 |
---|---|---|
committer | Jim Blandy <jimb@redhat.com> | 1992-07-15 02:24:58 +0000 |
commit | f98955eaaa3d2c459b373a7b4c5d1176a18687d9 (patch) | |
tree | 23dc25a018ca240872c713d715420f96d3315e7d /lisp/emacs-lisp | |
parent | dc6d96816db5f4f7b484e5e394501e5724c2d02f (diff) | |
download | emacs-f98955eaaa3d2c459b373a7b4c5d1176a18687d9.tar.gz emacs-f98955eaaa3d2c459b373a7b4c5d1176a18687d9.tar.bz2 emacs-f98955eaaa3d2c459b373a7b4c5d1176a18687d9.zip |
*** empty log message ***
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r-- | lisp/emacs-lisp/edebug.el | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/emacs-lisp/edebug.el b/lisp/emacs-lisp/edebug.el index 2302f1704f8..d60f2608103 100644 --- a/lisp/emacs-lisp/edebug.el +++ b/lisp/emacs-lisp/edebug.el @@ -1694,14 +1694,14 @@ Windows are handled a little differently under epoch.") (defun edebug-current-window-configuration () - "Return the current window or screen configuration." + "Return the current window or frame configuration." (if edebug-epoch-running (edebug-current-screen-configuration) (current-window-configuration))) (defun edebug-set-window-configuration (conf) - "Set the window or screen configuration to CONF." + "Set the window or frame configuration to CONF." (if edebug-epoch-running (edebug-set-screen-configuration conf) (set-window-configuration conf))) @@ -1714,7 +1714,7 @@ Windows are handled a little differently under epoch.") (defun edebug-pop-to-buffer (buffer) - "Like pop-to-buffer, but select a screen that buffer was shown in." + "Like pop-to-buffer, but select a frame that buffer was shown in." (let ((edebug-window (edebug-get-buffer-window buffer))) (if edebug-window (select-window edebug-window) |