From: Juanma Barranquero Date: Wed, 12 Jun 2002 17:20:05 +0000 (+0000) Subject: (x-handle-switch): Fix handling of x-invocation-args for switches with X-Git-Tag: ttn-vms-21-2-B4~14645 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=1823c9d2e10128e781926b2d85fe7219d1b5d908;p=emacs.git (x-handle-switch): Fix handling of x-invocation-args for switches with arguments. --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index bd29cd50c29..7a42bad04d1 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,8 @@ +2002-06-12 Juanma Barranquero + + * term/w32-win.el (x-handle-switch): Fix handling of + x-invocation-args for switches with arguments. + 2002-06-12 Richard M. Stallman * info.el (Info-fontify-node): Compute header line specially diff --git a/lisp/term/w32-win.el b/lisp/term/w32-win.el index 89093f894d3..657ab67ee46 100644 --- a/lisp/term/w32-win.el +++ b/lisp/term/w32-win.el @@ -148,8 +148,8 @@ the last file dropped is selected." (setq default-frame-alist (cons (cons param (car x-invocation-args)) - default-frame-alist)) - x-invocation-args (cdr x-invocation-args)))))) + default-frame-alist) + x-invocation-args (cdr x-invocation-args))))))) (defun x-handle-numeric-switch (switch) "Handle SWITCH of the form \"-switch n\"."