+2010-01-09 Jan Djärv <jan.h.d@swipnet.se>
+
+ * startup.el (command-line-1): Use orig-argi to check for ignored X and
+ NS options.
+
2010-01-08 Kenichi Handa <handa@m17n.org>
* international/fontset.el (build-default-fontset-data): Exclude
(setq cl1-line (string-to-number (match-string 1 argi))
cl1-column (string-to-number (match-string 2 argi))))
- ((setq cl1-tem (assoc argi command-line-x-option-alist))
+ ((setq cl1-tem (assoc orig-argi command-line-x-option-alist))
;; Ignore X-windows options and their args if not using X.
(setq command-line-args-left
(nthcdr (nth 1 cl1-tem) command-line-args-left)))
- ((setq cl1-tem (assoc argi command-line-ns-option-alist))
+ ((setq cl1-tem (assoc orig-argi command-line-ns-option-alist))
;; Ignore NS-windows options and their args if not using NS.
(setq command-line-args-left
(nthcdr (nth 1 cl1-tem) command-line-args-left)))