]> git.eshelyaron.com Git - emacs.git/commitdiff
Revert unnecessary parts of previous change.
authorGlenn Morris <rgm@gnu.org>
Tue, 15 Sep 2009 07:09:17 +0000 (07:09 +0000)
committerGlenn Morris <rgm@gnu.org>
Tue, 15 Sep 2009 07:09:17 +0000 (07:09 +0000)
lisp/startup.el

index a60ba03ce6bbddf544887e87ce11974dd2f26139..e7e988d367c2b74e4b0b7fc879110bb41b58dabe 100644 (file)
@@ -2071,14 +2071,14 @@ A fancy display is used on graphic displays, normal otherwise."
            (cl1-column 0))
 
        ;; Add the long X options to longopts.
-       (dolist (cl1-tem command-line-x-option-alist)
-         (if (string-match "^--" (car cl1-tem))
-            (push (car cl1-tem) longopts)))
+       (dolist (tem command-line-x-option-alist)
+         (if (string-match "^--" (car tem))
+            (push (car tem) longopts)))
 
        ;; Add the long NS options to longopts.
-       (dolist (cl1-tem command-line-ns-option-alist)
-         (if (string-match "^--" (car cl1-tem))
-             (push (list (car cl1-tem)) longopts)))
+       (dolist (tem command-line-ns-option-alist)
+         (if (string-match "^--" (car tem))
+             (push (list (car tem)) longopts)))
 
        ;; Loop, processing options.
        (while command-line-args-left
@@ -2202,7 +2202,8 @@ A fancy display is used on graphic displays, normal otherwise."
                     (error "File name omitted from `%s' option" argi))
                   (setq file-count (1+ file-count))
                   (let ((file (expand-file-name
-                               (command-line-normalize-file-name cl1-tem) cl1-dir)))
+                               (command-line-normalize-file-name cl1-tem)
+                               cl1-dir)))
                     (if (= file-count 1)
                         (setq first-file-buffer (find-file file))
                       (find-file-other-window file)))