diff options
| author | Jim Blandy | 1992-07-07 18:36:02 +0000 |
|---|---|---|
| committer | Jim Blandy | 1992-07-07 18:36:02 +0000 |
| commit | cf91c6c8100df1169a6d6f88df5993848e015ce5 (patch) | |
| tree | 82765ac7c128fcd8159329fbf634b4a8c35454cd | |
| parent | ca04638e0f68ed1483bb293f9e7fc1208cb6db8d (diff) | |
| download | emacs-cf91c6c8100df1169a6d6f88df5993848e015ce5.tar.gz emacs-cf91c6c8100df1169a6d6f88df5993848e015ce5.zip | |
*** empty log message ***
| -rw-r--r-- | lisp/startup.el | 2 | ||||
| -rw-r--r-- | src/xterm.c | 2 |
2 files changed, 4 insertions, 0 deletions
diff --git a/lisp/startup.el b/lisp/startup.el index 067ecc28745..0bfcf5ecf18 100644 --- a/lisp/startup.el +++ b/lisp/startup.el | |||
| @@ -338,6 +338,8 @@ Type \\[describe-distribution] for information on getting the latest version.")) | |||
| 338 | (setq command-line-args-left (cdr command-line-args-left))) | 338 | (setq command-line-args-left (cdr command-line-args-left))) |
| 339 | ((or (string-equal argi "-i") | 339 | ((or (string-equal argi "-i") |
| 340 | (string-equal argi "-insert")) | 340 | (string-equal argi "-insert")) |
| 341 | (or (stringp (car command-line-args-left)) | ||
| 342 | (error "filename omitted from `-i' option")) | ||
| 341 | (insert-file-contents (car command-line-args-left)) | 343 | (insert-file-contents (car command-line-args-left)) |
| 342 | (setq command-line-args-left (cdr command-line-args-left))) | 344 | (setq command-line-args-left (cdr command-line-args-left))) |
| 343 | ((string-equal argi "-kill") | 345 | ((string-equal argi "-kill") |
diff --git a/src/xterm.c b/src/xterm.c index 43f59d03ad2..5261ed7158c 100644 --- a/src/xterm.c +++ b/src/xterm.c | |||
| @@ -3374,8 +3374,10 @@ x_make_screen_visible (s) | |||
| 3374 | if (! SCREEN_VISIBLE_P (s)) | 3374 | if (! SCREEN_VISIBLE_P (s)) |
| 3375 | { | 3375 | { |
| 3376 | #ifdef HAVE_X11 | 3376 | #ifdef HAVE_X11 |
| 3377 | #if 0 | ||
| 3377 | if (! EQ (Vx_no_window_manager, Qt)) | 3378 | if (! EQ (Vx_no_window_manager, Qt)) |
| 3378 | x_wm_set_window_state (s, NormalState); | 3379 | x_wm_set_window_state (s, NormalState); |
| 3380 | #endif | ||
| 3379 | 3381 | ||
| 3380 | XMapWindow (XDISPLAY s->display.x->window_desc); | 3382 | XMapWindow (XDISPLAY s->display.x->window_desc); |
| 3381 | if (s->display.x->v_scrollbar != 0 || s->display.x->h_scrollbar != 0) | 3383 | if (s->display.x->v_scrollbar != 0 || s->display.x->h_scrollbar != 0) |