GNU bug report logs - #5864
24.0.50; [PATCH] emacsclient support for setting frame parameters

Previous Next

Package: emacs;

Reported by: Andreas Rottmann <a.rottmann <at> gmx.at>

Date: Thu, 8 Apr 2010 16:14:01 UTC

Severity: wishlist

Tags: patch

Merged with 7335, 8112

Found in versions 23.1, 23.2

Fixed in version 24.1

Done: Glenn Morris <rgm <at> gnu.org>

Bug is archived. No further changes may be made.

To add a comment to this bug, you must first unarchive it, by sending
a message to control AT debbugs.gnu.org, with unarchive 5864 in the body.
You can then email your comments to 5864 AT debbugs.gnu.org in the normal way.

Toggle the display of automated, internal messages from the tracker.

View this report as an mbox folder, status mbox, maintainer mbox


Report forwarded to owner <at> debbugs.gnu.org, bug-gnu-emacs <at> gnu.org:
bug#5864; Package emacs. (Thu, 08 Apr 2010 16:14:01 GMT) Full text and rfc822 format available.

Acknowledgement sent to Andreas Rottmann <a.rottmann <at> gmx.at>:
New bug report received and forwarded. Copy sent to bug-gnu-emacs <at> gnu.org. (Thu, 08 Apr 2010 16:14:01 GMT) Full text and rfc822 format available.

Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):

From: Andreas Rottmann <a.rottmann <at> gmx.at>
To: bug-gnu-emacs <at> gnu.org
Subject: 23.1; [PATCH] emacsclient support for setting frame parameters
Date: Thu, 08 Apr 2010 17:50:46 +0200
[Message part 1 (text/plain, inline)]
The attached patch (against recent HEAD) adds a new option
`--frame-parameters' to emacsclient, which allows to set the frame
parameter alist for the to-be-created frame.

This feature is useful for window managers that allow matching on X
properties. Without this patch, it is not possible to influence those
at /frame creation time/, they could only be set after the frame was
already created. This is to late for windowmanagers who match, and
typically do so at frame creation time.

[frame-params.patch (text/x-diff, inline)]
diff --git a/lib-src/emacsclient.c b/lib-src/emacsclient.c
index 1e7ec7d..c4aeb68 100644
--- a/lib-src/emacsclient.c
+++ b/lib-src/emacsclient.c
@@ -154,6 +154,10 @@ char *server_file = NULL;
 /* PID of the Emacs server process.  */
 int emacs_pid = 0;
 
+/* If non-NULL, a string that should form a frame parameter alist to
+   be used for the new frame */
+const char *frame_parameters = NULL;
+
 void print_help_and_exit () NO_RETURN;
 
 struct option longopts[] =
@@ -166,6 +170,7 @@ struct option longopts[] =
   { "nw",	no_argument,       NULL, 't' },
   { "create-frame", no_argument,   NULL, 'c' },
   { "alternate-editor", required_argument, NULL, 'a' },
+  { "frame-parameters", required_argument, NULL, 'F' },
 #ifndef NO_SOCKETS_IN_FILE_SYSTEM
   { "socket-name",	required_argument, NULL, 's' },
 #endif
@@ -587,6 +592,10 @@ decode_options (argc, argv)
 	  print_help_and_exit ();
 	  break;
 
+        case 'F':
+          frame_parameters = optarg;
+          break;
+
 	default:
 	  message (TRUE, "Try `%s --help' for more information\n", progname);
 	  exit (EXIT_FAILURE);
@@ -1620,6 +1629,13 @@ main (argc, argv)
       send_to_emacs (emacs_socket, " ");
     }
 
+  if (frame_parameters && !current_frame)
+    {
+      send_to_emacs (emacs_socket, "-frame-parameters ");
+      quote_argument (emacs_socket, frame_parameters);
+      send_to_emacs (emacs_socket, " ");
+    }
+
   /* If using the current frame, send tty information to Emacs anyway.
      In daemon mode, Emacs may need to occupy this tty if no other
      frame is available.  */
diff --git a/lisp/server.el b/lisp/server.el
index d36b99c..9a7b4c8 100644
--- a/lisp/server.el
+++ b/lisp/server.el
@@ -708,7 +708,10 @@ Server mode runs a process that accepts commands from the
                                      (number-to-string (emacs-pid)) "\n"))
     frame))
 
-(defun server-create-window-system-frame (display nowait proc)
+(defun server-create-window-system-frame (display 
+                                          nowait
+                                          proc
+                                          &optional parameters)
   (add-to-list 'frame-inherited-parameters 'client)
   (if (not (fboundp 'make-frame-on-display))
       (progn
@@ -723,7 +726,8 @@ Server mode runs a process that accepts commands from the
     ;; killing emacs on that frame.
     (let* ((params `((client . ,(if nowait 'nowait proc))
                      ;; This is a leftover, see above.
-                     (environment . ,(process-get proc 'env))))
+                     (environment . ,(process-get proc 'env))
+                     ,@parameters))
            (frame (make-frame-on-display
                    (or display
                        (frame-parameter nil 'display)
@@ -803,6 +807,9 @@ The following commands are accepted by the server:
 `-current-frame'
   Forbid the creation of new frames.
 
+`-frame-parameters ALIST'
+  Set the parameters of the created frame.
+
 `-nowait'
   Request that the next frame created should not be
   associated with this client.
@@ -904,6 +911,7 @@ The following commands are accepted by the client:
 		commands
 		dir
 		use-current-frame
+                frame-parameters  ;parameters for newly created frame
 		tty-name       ;nil, `window-system', or the tty name.
 		tty-type             ;string.
 		files
@@ -926,6 +934,13 @@ The following commands are accepted by the client:
 		 ;; -current-frame:  Don't create frames.
 		 ((equal "-current-frame" arg) (setq use-current-frame t))
 
+                 ;; -frame-parameters: Set frame parameters
+                 ((equal "-frame-parameters" arg)
+                  (lexical-let ((alist (pop command-line-args-left)))
+		    (if coding-system
+			(setq alist (decode-coding-string alist coding-system)))
+                    (setq frame-parameters (car (read-from-string alist)))))
+
 		 ;; -display DISPLAY:
 		 ;; Open X frames on the given display instead of the default.
 		 ((and (equal "-display" arg) command-line-args-left)
@@ -1036,7 +1051,11 @@ The following commands are accepted by the client:
 		    (setq tty-name nil tty-type nil)
 		    (if display (server-select-display display)))
 		   ((eq tty-name 'window-system)
-		    (server-create-window-system-frame display nowait proc))
+		    (server-create-window-system-frame
+                     display
+                     nowait
+                     proc
+                     frame-parameters))
 		   ;; When resuming on a tty, tty-name is nil.
 		   (tty-name
 		    (server-create-tty-frame tty-name tty-type proc))))
[Message part 3 (text/plain, inline)]
Regards, Rotty
-- 
Andreas Rottmann -- <http://rotty.yi.org/>

Message #6 received at 5864-quiet <at> debbugs.gnu.org (full text, mbox):

From: Andreas Rottmann <a.rottmann <at> gmx.at>
To: 5864-quiet <at> debbugs.gnu.org
Subject: [PATCH] Allow passing frame parameters to emacsclient
Date: Sat, 26 Feb 2011 18:32:49 +0100
[Message part 1 (text/plain, inline)]
[resent from emacs-devel]

Hi!

This is the first patch I submit for Emacs, so I hope I followed all the
rules :-).  I initially submitted a now-stale version of the patch as a
bugreport[0] -- I assume I should close this, as patches are to be
submitted and discussed on this mailinglist (or bug-gnu-emacs <at> gnu.org),
right?

Another thing: the patch is relatively small, but I guess it might be
over the no-copyright-assignment-needed limit; if this is the case,
please tell me so I can request papers from FSF for Emacs (and Org-Mode,
while I'm at it).  I have already signed papers for Guile, but I guess I
need to do this again for Emacs(?).

A description and rationale for the feature as well as ChangeLog entries
are in the patch headers, see below.  As for my personal use-case: I'd
like to create new frames using emacsclient for Email (Gnus) and IRC
(rcirc) and have my window manager (awesome[1]) put these frames on a
fixed tag (= virtual desktop).  The attached patch makes this possible
by allowing to influence e.g. the frame name at frame creation time.
You could do that before using "--eval", but that would set the
properties only after the frame has already been created.

[0] http://debbugs.gnu.org/cgi/bugreport.cgi?bug=5864
[1] http://awesome.naquadah.org/

[frame-params.diff (text/x-diff, inline)]
From: Andreas Rottmann <a.rottmann <at> gmx.at>
Subject: Allow passing frame parameters to emacsclient

Adds a new option `--frame-parameters' to emacsclient, which allows to
set the frame parameter alist for the to-be-created frame.

This feature is useful for window managers that allow matching on X
properties.  Without this patch, it is not possible to influence those
at /frame creation time/, they could only be set after the frame was
already created.  This is too late for windowmanagers who match the X
properties at frame creation time.

* lib-src/emacsclient.c (frame_parameters): New global variable.
  (longopts): New entry "frame-parameters" with short option alias
  'F'.
  (decode_options): Process frame-parameters option.
  (main): Send value of frame-parameters option to emacs if we are
  constructing a new frame.

* lisp/servel.el (server-create-window-system-frame): Add new optional
  argument `parameters' which allows setting additional frame
  parameters.
  (server-process-filter): Handle "-frame-parameters" command, and
  pass its value to `server-create-window-system-frame'

* doc/emacs/misc.texi (Invoking emacsclient): Document the
  "--frame-parameters" option.
* doc/man/emacsclient.1: Ditto.

---
 doc/emacs/misc.texi   |    5 +++++
 doc/man/emacsclient.1 |    3 +++
 etc/NEWS              |    4 ++++
 lib-src/emacsclient.c |   16 ++++++++++++++++
 lisp/server.el        |   23 ++++++++++++++++++++---
 5 files changed, 48 insertions(+), 3 deletions(-)

diff --git a/doc/emacs/misc.texi b/doc/emacs/misc.texi
index d7143d1..99e5fbf 100644
--- a/doc/emacs/misc.texi
+++ b/doc/emacs/misc.texi
@@ -1622,6 +1622,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. @xref{Frame
+Parameters}.
+
 @item -d @var{display}
 @itemx --display=@var{display}
 Tell Emacs to open the given files on the X display @var{display}
diff --git a/doc/man/emacsclient.1 b/doc/man/emacsclient.1
index cae4d76..4843053 100644
--- a/doc/man/emacsclient.1
+++ b/doc/man/emacsclient.1
@@ -58,6 +58,9 @@ daemon mode and emacsclient will try to connect to it.
 .B -c, \-\-create-frame
 create a new frame instead of trying to use the current Emacs frame
 .TP
+.B \-F, \-\-frame-parameters=ALIST
+set the parameters of a newly-created frame.
+.TP
 .B \-d, \-\-display=DISPLAY
 tell the server to display the files on the given display.
 .TP
diff --git a/etc/NEWS b/etc/NEWS
index cfb7889..0c904bc 100644
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -71,6 +71,10 @@ from load-path.  -Q now implies this.
 client frame in parent X window ID, via XEmbed.  This works like the
 --parent-id argument to Emacs.
 
++++
+*** New emacsclient argument --frame-parameters can be used to set the
+frame parameters of a newly-created graphical frame.
+
 *** If emacsclient shuts down as a result of Emacs signalling an
 error, its exit status is 1.
 
diff --git a/lib-src/emacsclient.c b/lib-src/emacsclient.c
index 836891a..e76e8bf 100644
--- a/lib-src/emacsclient.c
+++ b/lib-src/emacsclient.c
@@ -157,6 +157,10 @@ const char *server_file = NULL;
 /* PID of the Emacs server process.  */
 int emacs_pid = 0;
 
+/* If non-NULL, a string that should form a frame parameter alist to
+   be used for the new frame */
+const char *frame_parameters = NULL;
+
 static void print_help_and_exit (void) NO_RETURN;
 static void fail (void) NO_RETURN;
 
@@ -171,6 +175,7 @@ struct option longopts[] =
   { "nw",	no_argument,       NULL, 't' },
   { "create-frame", no_argument,   NULL, 'c' },
   { "alternate-editor", required_argument, NULL, 'a' },
+  { "frame-parameters", required_argument, NULL, 'F' },
 #ifndef NO_SOCKETS_IN_FILE_SYSTEM
   { "socket-name",	required_argument, NULL, 's' },
 #endif
@@ -592,6 +597,10 @@ decode_options (int argc, char **argv)
 	  print_help_and_exit ();
 	  break;
 
+        case 'F':
+          frame_parameters = optarg;
+          break;
+
 	default:
 	  message (TRUE, "Try `%s --help' for more information\n", progname);
 	  exit (EXIT_FAILURE);
@@ -1622,6 +1631,13 @@ main (int argc, char **argv)
       send_to_emacs (emacs_socket, " ");
     }
 
+  if (frame_parameters && !current_frame)
+    {
+      send_to_emacs (emacs_socket, "-frame-parameters ");
+      quote_argument (emacs_socket, frame_parameters);
+      send_to_emacs (emacs_socket, " ");
+    }
+
   /* If using the current frame, send tty information to Emacs anyway.
      In daemon mode, Emacs may need to occupy this tty if no other
      frame is available.  */
diff --git a/lisp/server.el b/lisp/server.el
index df8cae0..2a883bd 100644
--- a/lisp/server.el
+++ b/lisp/server.el
@@ -728,7 +728,11 @@ Server mode runs a process that accepts commands from the
 
     frame))
 
-(defun server-create-window-system-frame (display nowait proc parent-id)
+(defun server-create-window-system-frame (display
+                                          nowait
+                                          proc
+                                          parent-id
+                                          &optional parameters)
   (add-to-list 'frame-inherited-parameters 'client)
   (if (not (fboundp 'make-frame-on-display))
       (progn
@@ -743,7 +747,8 @@ Server mode runs a process that accepts commands from the
     ;; killing emacs on that frame.
     (let* ((params `((client . ,(if nowait 'nowait proc))
                      ;; This is a leftover, see above.
-                     (environment . ,(process-get proc 'env))))
+                     (environment . ,(process-get proc 'env))
+                     ,@parameters))
 	   (display (or display
 			(frame-parameter nil 'display)
 			(getenv "DISPLAY")
@@ -825,6 +830,9 @@ The following commands are accepted by the server:
 `-current-frame'
   Forbid the creation of new frames.
 
+`-frame-parameters ALIST'
+  Set the parameters of the created frame.
+
 `-nowait'
   Request that the next frame created should not be
   associated with this client.
@@ -933,6 +941,7 @@ The following commands are accepted by the client:
 		commands
 		dir
 		use-current-frame
+                frame-parameters  ;parameters for newly created frame
 		tty-name   ; nil, `window-system', or the tty name.
 		tty-type   ; string.
 		files
@@ -953,6 +962,13 @@ The following commands are accepted by the client:
                 ;; -current-frame:  Don't create frames.
                 (`"-current-frame" (setq use-current-frame t))
 
+                ;; -frame-parameters: Set frame parameters
+                (`"-frame-parameters"
+                 (lexical-let ((alist (pop args-left)))
+                   (if coding-system
+                       (setq alist (decode-coding-string alist coding-system)))
+                   (setq frame-parameters (car (read-from-string alist)))))
+
                 ;; -display DISPLAY:
                 ;; Open X frames on the given display instead of the default.
                 (`"-display"
@@ -1068,7 +1084,8 @@ The following commands are accepted by the client:
 		    (if display (server-select-display display)))
 		   ((eq tty-name 'window-system)
 		    (server-create-window-system-frame display nowait proc
-						       parent-id))
+						       parent-id
+                                                       frame-parameters))
 		   ;; When resuming on a tty, tty-name is nil.
 		   (tty-name
 		    (server-create-tty-frame tty-name tty-type proc))))
-- 
tg: (498f0e8..) t/frame-params (depends on: master)
[Message part 3 (text/plain, inline)]
Kind Regards, Rotty
-- 
Andreas Rottmann -- <http://rotty.yi.org/>

Information forwarded to owner <at> debbugs.gnu.org, bug-gnu-emacs <at> gnu.org:
bug#5864; Package emacs. (Tue, 08 Mar 2011 21:18:02 GMT) Full text and rfc822 format available.

Message #9 received at 5864 <at> debbugs.gnu.org (full text, mbox):

From: Andreas Rottmann <a.rottmann <at> gmx.at>
To: 5864 <at> debbugs.gnu.org, control <at> debbugs.gnu.org
Subject: Update bug information
Date: Tue, 08 Mar 2011 22:16:46 +0100
[Message part 1 (text/plain, inline)]
retitle 5864 24.0.50; [PATCH] emacsclient support for setting frame parameters
thanks

Here's an updated version of the patch -- no real changes, but it
resolves a conflict in NEWS and should again apply cleanly against
current trunk (Tue Mar 8 09:33:55 2011 -0800, "Add missing piece of
previous doc/ change").

[frame-params.diff (text/x-diff, attachment)]
[Message part 3 (text/plain, inline)]
Regards, Rotty

Changed bug title to '24.0.50; [PATCH] emacsclient support for setting frame parameters' from '23.1; [PATCH] emacsclient support for setting frame parameters' Request was from Andreas Rottmann <a.rottmann <at> gmx.at> to control <at> debbugs.gnu.org. (Tue, 08 Mar 2011 21:18:03 GMT) Full text and rfc822 format available.

Forcibly Merged 5864 8112. Request was from Glenn Morris <rgm <at> gnu.org> to control <at> debbugs.gnu.org. (Wed, 09 Mar 2011 17:30:03 GMT) Full text and rfc822 format available.

Information forwarded to owner <at> debbugs.gnu.org, bug-gnu-emacs <at> gnu.org:
bug#5864; Package emacs. (Sun, 17 Apr 2011 00:35:02 GMT) Full text and rfc822 format available.

Message #16 received at 5864 <at> debbugs.gnu.org (full text, mbox):

From: Glenn Morris <rgm <at> gnu.org>
To: Andreas Rottmann <a.rottmann <at> gmx.at>
Cc: 5864 <at> debbugs.gnu.org
Subject: Re: emacsclient support for setting frame parameters
Date: Sat, 16 Apr 2011 20:34:33 -0400
Hi - thanks for the patch and sorry for the delay in getting back to you.
This looks good and I think we should include it. It's probably just
large enough that we should get a copyright assignment (I will send the
form separately). One missing piece: decode_options and
print_help_and_exit in emacsclient.c need updating.




Information forwarded to owner <at> debbugs.gnu.org, bug-gnu-emacs <at> gnu.org:
bug#5864; Package emacs. (Sun, 17 Apr 2011 01:09:01 GMT) Full text and rfc822 format available.

Message #19 received at 5864 <at> debbugs.gnu.org (full text, mbox):

From: Andreas Rottmann <a.rottmann <at> gmx.at>
To: Glenn Morris <rgm <at> gnu.org>
Cc: 5864 <at> debbugs.gnu.org
Subject: Re: emacsclient support for setting frame parameters
Date: Sun, 17 Apr 2011 03:07:57 +0200
Glenn Morris <rgm <at> gnu.org> writes:

> Hi - thanks for the patch and sorry for the delay in getting back to you.
> This looks good and I think we should include it. It's probably just
> large enough that we should get a copyright assignment (I will send the
> form separately). 
>
Cool. I've already received papers from FSF due to another Emacs patch,
I just have to get a disclaimer from my University, and send them back.
I'll notify you when the process is complete.

> One missing piece: decode_options and print_help_and_exit in
> emacsclient.c need updating.
>
Good catch; I'll post an updated patch, probably before I'm on file
wrt. copyright assignment.  I'm not entirely sure about decode_options,
however -- should there really be a short option corresponding to
--frame-parameters, and if so, is 'F' the right choice?  I don't have
any specific preferences on that question.

Regards, Rotty
-- 
Andreas Rottmann -- <http://rotty.yi.org/>




Information forwarded to owner <at> debbugs.gnu.org, bug-gnu-emacs <at> gnu.org:
bug#5864; Package emacs. (Sun, 17 Apr 2011 02:19:02 GMT) Full text and rfc822 format available.

Message #22 received at 5864 <at> debbugs.gnu.org (full text, mbox):

From: Glenn Morris <rgm <at> gnu.org>
To: Andreas Rottmann <a.rottmann <at> gmx.at>
Cc: 5864 <at> debbugs.gnu.org
Subject: Re: emacsclient support for setting frame parameters
Date: Sat, 16 Apr 2011 22:18:36 -0400
Andreas Rottmann wrote:

> I'm not entirely sure about decode_options, however -- should there
> really be a short option corresponding to --frame-parameters, and if
> so, is 'F' the right choice? I don't have any specific preferences on
> that question.

Me neither; but you documented a -F option in other parts of the patch,
and it's not like emacsclient is running short of single letters to use
for options, and -F seems reasonable for `frame-parameters', so why not...




Information forwarded to owner <at> debbugs.gnu.org, bug-gnu-emacs <at> gnu.org:
bug#5864; Package emacs. (Mon, 30 May 2011 18:27:02 GMT) Full text and rfc822 format available.

Message #25 received at 5864 <at> debbugs.gnu.org (full text, mbox):

From: Glenn Morris <rgm <at> gnu.org>
To: Andreas Rottmann <a.rottmann <at> gmx.at>
Cc: 5864 <at> debbugs.gnu.org
Subject: Re: bug#5864: emacsclient support for setting frame parameters
Date: Mon, 30 May 2011 14:26:51 -0400
Hello, how is it going with your copyright assignment?
It would be nice to get this into Emacs before the end of June; see

http://lists.gnu.org/archive/html/emacs-devel/2011-05/msg00953.html




Information forwarded to owner <at> debbugs.gnu.org, bug-gnu-emacs <at> gnu.org:
bug#5864; Package emacs. (Tue, 31 May 2011 01:36:02 GMT) Full text and rfc822 format available.

Message #28 received at 5864 <at> debbugs.gnu.org (full text, mbox):

From: Andreas Rottmann <a.rottmann <at> gmx.at>
To: Glenn Morris <rgm <at> gnu.org>
Cc: 5864 <at> debbugs.gnu.org
Subject: Re: bug#5864: emacsclient support for setting frame parameters
Date: Tue, 31 May 2011 03:35:33 +0200
Glenn Morris <rgm <at> gnu.org> writes:

> Hello, how is it going with your copyright assignment?
>
There is some issues with the disclaimer from my University: basically,
they won't issue such a thing, as they say they're not in a position to
claim copyright in the first place.  The copyright clerk still wants
some clarification on that -- I'll have another call with the legal
department this week, and hopefully get a response that is satisfactory
to the copyright clerk.

> It would be nice to get this into Emacs before the end of June; see
> http://lists.gnu.org/archive/html/emacs-devel/2011-05/msg00953.html
>
I hope to be able to send the papers this week, so this hopefully works
out.

Regards, Rotty (who is amazed about what amounts of bureaucracy a
                few-line patch can involve)
-- 
Andreas Rottmann -- <http://rotty.yi.org/>




Information forwarded to owner <at> debbugs.gnu.org, bug-gnu-emacs <at> gnu.org:
bug#5864; Package emacs. (Mon, 20 Jun 2011 16:05:01 GMT) Full text and rfc822 format available.

Message #31 received at 5864 <at> debbugs.gnu.org (full text, mbox):

From: Andreas Rottmann <a.rottmann <at> gmx.at>
To: Glenn Morris <rgm <at> gnu.org>
Cc: 5864 <at> debbugs.gnu.org
Subject: Copyright assignment status
Date: Mon, 20 Jun 2011 18:04:22 +0200
Hi!

Just a heads-up: I sent the papers today, so with some luck, I get the
OK flag from the copyright clerk in about a week -- hopefully that's
still early enough so the patch can make into trunk before the freeze.

Regards, Rotty




Information forwarded to owner <at> debbugs.gnu.org, bug-gnu-emacs <at> gnu.org:
bug#5864; Package emacs. (Fri, 24 Jun 2011 06:37:02 GMT) Full text and rfc822 format available.

Message #34 received at 5864 <at> debbugs.gnu.org (full text, mbox):

From: Andreas Rottmann <a.rottmann <at> gmx.at>
To: Glenn Morris <rgm <at> gnu.org>
Cc: 5864 <at> debbugs.gnu.org
Subject: Re: Copyright assignment status
Date: Fri, 24 Jun 2011 08:36:05 +0200
Andreas Rottmann <a.rottmann <at> gmx.at> writes:

> Hi!
>
> Just a heads-up: I sent the papers today, so with some luck, I get the
> OK flag from the copyright clerk in about a week -- hopefully that's
> still early enough so the patch can make into trunk before the freeze.
>
I just got a mail from the copyright clerk stating that my papers have
been received, so the patch should be ready-to-go, at least from a legal
POV.  Note that although my status is marked as "expired disclaimer",
this should not affect this patch, as it's been submitted before I was
employed at my current company (i.e. before June 1.).  I'll try to get
and send a disclaimer soonish, in case I submit any patches in the
future.

Regards, Rotty




Reply sent to Glenn Morris <rgm <at> gnu.org>:
You have taken responsibility. (Sat, 25 Jun 2011 18:13:01 GMT) Full text and rfc822 format available.

Notification sent to Andreas Rottmann <a.rottmann <at> gmx.at>:
bug acknowledged by developer. (Sat, 25 Jun 2011 18:13:01 GMT) Full text and rfc822 format available.

Message #39 received at 5864-done <at> debbugs.gnu.org (full text, mbox):

From: Glenn Morris <rgm <at> gnu.org>
To: 5864-done <at> debbugs.gnu.org
Subject: Re: bug#5864
Date: Sat, 25 Jun 2011 14:12:34 -0400
Version: 24.1

Andreas Rottmann wrote:

> I just got a mail from the copyright clerk stating that my papers have
> been received, so the patch should be ready-to-go, at least from a legal
> POV.  Note that although my status is marked as "expired disclaimer",
> this should not affect this patch, as it's been submitted before I was
> employed at my current company (i.e. before June 1.).

I was wondering what that meant...

I have applied your patch. Thank you for persevering with this!

Summary: A frame-parameters argument can now be passed to emacsclient to
control the properties of new graphical frames.




Reply sent to Glenn Morris <rgm <at> gnu.org>:
You have taken responsibility. (Sat, 25 Jun 2011 18:13:02 GMT) Full text and rfc822 format available.

Notification sent to arne_bab <at> yahoo.de:
bug acknowledged by developer. (Sat, 25 Jun 2011 18:13:02 GMT) Full text and rfc822 format available.

Forcibly Merged 5864 7335 8112. Request was from Glenn Morris <rgm <at> gnu.org> to control <at> debbugs.gnu.org. (Wed, 13 Jul 2011 02:15:02 GMT) Full text and rfc822 format available.

bug archived. Request was from Debbugs Internal Request <help-debbugs <at> gnu.org> to internal_control <at> debbugs.gnu.org. (Wed, 10 Aug 2011 11:24:04 GMT) Full text and rfc822 format available.

This bug report was last modified 12 years and 288 days ago.

Previous Next


GNU bug tracking system
Copyright (C) 1999 Darren O. Benham, 1997,2003 nCipher Corporation Ltd, 1994-97 Ian Jackson.