summaryrefslogtreecommitdiff
path: root/lisp/emacs-lisp
diff options
context:
space:
mode:
authorJim Blandy <jimb@redhat.com>1992-07-15 02:24:58 +0000
committerJim Blandy <jimb@redhat.com>1992-07-15 02:24:58 +0000
commitf98955eaaa3d2c459b373a7b4c5d1176a18687d9 (patch)
tree23dc25a018ca240872c713d715420f96d3315e7d /lisp/emacs-lisp
parentdc6d96816db5f4f7b484e5e394501e5724c2d02f (diff)
downloademacs-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.el6
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)