diff options
author | Andreas Rottmann <a.rottmann@gmx.at> | 2011-06-25 11:05:48 -0700 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2011-06-25 11:05:48 -0700 |
commit | 18a4ce5ea1b06bd077e87fd1ac8966b19b10ee8c (patch) | |
tree | 3a84ffb4fba8030f72c58f07dbbabe1d3eb67a36 /doc/emacs | |
parent | 919bbce05b7757431247a771efd3943eab251eb2 (diff) | |
download | emacs-18a4ce5ea1b06bd077e87fd1ac8966b19b10ee8c.tar.gz emacs-18a4ce5ea1b06bd077e87fd1ac8966b19b10ee8c.tar.bz2 emacs-18a4ce5ea1b06bd077e87fd1ac8966b19b10ee8c.zip |
Allow emacsclient to set parameters of new graphical frames (bug#5864)
* lib-src/emacsclient.c (longopts, decode_options, main): Add frame-parameters.
* lisp/server.el (server-create-window-system-frame): Add parameters arg.
(server-process-filter): Doc fix. Handle frame-parameters.
* doc/emacs/misc.texi (emacsclient Options): Mention --frame-parameters.
* doc/man/emacsclient.1: Mention --frame-parameters.
* etc/NEWS: Mention this.
Diffstat (limited to 'doc/emacs')
-rw-r--r-- | doc/emacs/ChangeLog | 4 | ||||
-rw-r--r-- | doc/emacs/misc.texi | 5 |
2 files changed, 9 insertions, 0 deletions
diff --git a/doc/emacs/ChangeLog b/doc/emacs/ChangeLog index 8853eb099d6..ab0abcd43d3 100644 --- a/doc/emacs/ChangeLog +++ b/doc/emacs/ChangeLog @@ -1,3 +1,7 @@ +2011-06-25 Andreas Rottmann <a.rottmann@gmx.at> + + * misc.texi (emacsclient Options): Mention --frame-parameters. + 2011-06-09 Glenn Morris <rgm@gnu.org> * custom.texi (Specifying File Variables): diff --git a/doc/emacs/misc.texi b/doc/emacs/misc.texi index 290e5dc53bf..f83ac38469a 100644 --- a/doc/emacs/misc.texi +++ b/doc/emacs/misc.texi @@ -1623,6 +1623,11 @@ text-only terminal frame (@pxref{Frames}). If you omit a filename argument while supplying the @samp{-c} option, the new frame displays the @samp{*scratch*} buffer (@pxref{Buffers}). +@item -F +@itemx --frame-parameters=@var{alist} +Set the parameters for a newly-created graphical frame +(@pxref{Frame Parameters}). + @item -d @var{display} @itemx --display=@var{display} Tell Emacs to open the given files on the X display @var{display} |