comparison lisp/dos-fns.el @ 15400:64095f6a315c

No need to require 'faces and set menu-bar-mode. (window-frame): Remove; it is now on `frame.c'. (raise-frame, select-frame): Likewise.
author Richard M. Stallman <rms@gnu.org>
date Mon, 10 Jun 1996 21:21:35 +0000
parents 25dbb4494147
children 9f2735842213
comparison
equal deleted inserted replaced
15399:e9ec008793fd 15400:64095f6a315c
190 regs) 190 regs)
191 191
192 (defsubst intdos (regs) 192 (defsubst intdos (regs)
193 (int86 33 regs)) 193 (int86 33 regs))
194 194
195 ;; Extra stub to functions in src/frame.c
196 ;; Emacs aborts during dump if the following don't have a doc string.
197 (defun window-frame (window)
198 "Return the frame that WINDOW resides on."
199 (selected-frame))
200 (defun raise-frame (frame)
201 "Raise FRAME to the top of the desktop."
202 nil)
203 (defun select-frame (frame &optional no-enter)
204 "Select FRAME for input events."
205 (selected-frame))
206
207 ;; Support for printing under MS-DOS, see lpr.el and ps-print.el. 195 ;; Support for printing under MS-DOS, see lpr.el and ps-print.el.
208 (defvar dos-printer "PRN" 196 (defvar dos-printer "PRN"
209 "*The name of a local MS-DOS device to which data is sent for printing. 197 "*The name of a local MS-DOS device to which data is sent for printing.
210 \(Note that PostScript files are sent to `dos-ps-printer', which see.\) 198 \(Note that PostScript files are sent to `dos-ps-printer', which see.\)
211 199