From: Richard M. Stallman Date: Fri, 28 Jun 1996 07:58:29 +0000 (+0000) Subject: (command-line-x-option-alist): Don't handle -rn. X-Git-Tag: emacs-19.34~325 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=5676ab57a873642bc71726652cb897a40ad72dce;p=emacs.git (command-line-x-option-alist): Don't handle -rn. x-handle-name-rn-switch renamed to x-handle-name-switch. --- diff --git a/lisp/startup.el b/lisp/startup.el index 5e9bfdc3bfd..a3aafc7454f 100644 --- a/lisp/startup.el +++ b/lisp/startup.el @@ -163,8 +163,7 @@ This is normally copied from `default-directory' when Emacs starts.") '(("-bw" 1 x-handle-numeric-switch border-width) ("-d" 1 x-handle-display) ("-display" 1 x-handle-display) - ("-name" 1 x-handle-name-rn-switch) - ("-rn" 1 x-handle-name-rn-switch) + ("-name" 1 x-handle-name-switch) ("-title" 1 x-handle-switch title) ("-T" 1 x-handle-switch title) ("-r" 0 x-handle-switch reverse t) @@ -191,7 +190,7 @@ This is normally copied from `default-directory' when Emacs starts.") ("-bd" 1 x-handle-switch) ("--border-width" 1 x-handle-numeric-switch border-width) ("--display" 1 x-handle-display) - ("--name" 1 x-handle-name-rn-switch) + ("--name" 1 x-handle-name-switch) ("--title" 1 x-handle-switch title) ("--reverse-video" 0 x-handle-switch reverse t) ("--font" 1 x-handle-switch font)