annotate tests/tooltalk/make-client-frame.c @ 5753:dbd8305e13cb

Warn about non-string non-integer ARG to #'gensym, bytecomp.el. lisp/ChangeLog addition: 2013-08-21 Aidan Kehoe <kehoea@parhasard.net> * bytecomp.el: * bytecomp.el (gensym): * bytecomp.el (byte-compile-gensym): New. Warn that gensym called in a for-effect context is unlikely to be useful. Warn about non-string non-integer ARGs, this is incorrect. Am not changing the function to error with same, most code that makes the mistake is has no problems, which is why it has survived so long. * window-xemacs.el (save-window-excursion/mapping): * window.el (save-window-excursion): Call #'gensym with a string, not a symbol.
author Aidan Kehoe <kehoea@parhasard.net>
date Wed, 21 Aug 2013 19:02:59 +0100
parents 9fc91aa3a927
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
5408
9fc91aa3a927 Converted tooltalk to GPLv3 according to GPLv3 source survey analysis.
Mats Lidell <matsl@xemacs.org>
parents: 70
diff changeset
1 /* make-client-frame.c - create a new frame in XEmacs using ToolTalk
9fc91aa3a927 Converted tooltalk to GPLv3 according to GPLv3 source survey analysis.
Mats Lidell <matsl@xemacs.org>
parents: 70
diff changeset
2 Copyright (C) 1995 Sun Microsystems, Inc
9fc91aa3a927 Converted tooltalk to GPLv3 according to GPLv3 source survey analysis.
Mats Lidell <matsl@xemacs.org>
parents: 70
diff changeset
3
9fc91aa3a927 Converted tooltalk to GPLv3 according to GPLv3 source survey analysis.
Mats Lidell <matsl@xemacs.org>
parents: 70
diff changeset
4 Author: Vladimir Ivanovic <vladimir@Eng.Sun.COM>
9fc91aa3a927 Converted tooltalk to GPLv3 according to GPLv3 source survey analysis.
Mats Lidell <matsl@xemacs.org>
parents: 70
diff changeset
5
9fc91aa3a927 Converted tooltalk to GPLv3 according to GPLv3 source survey analysis.
Mats Lidell <matsl@xemacs.org>
parents: 70
diff changeset
6 This file is part of XEmacs.
9fc91aa3a927 Converted tooltalk to GPLv3 according to GPLv3 source survey analysis.
Mats Lidell <matsl@xemacs.org>
parents: 70
diff changeset
7
9fc91aa3a927 Converted tooltalk to GPLv3 according to GPLv3 source survey analysis.
Mats Lidell <matsl@xemacs.org>
parents: 70
diff changeset
8 XEmacs is free software: you can redistribute it and/or modify it
9fc91aa3a927 Converted tooltalk to GPLv3 according to GPLv3 source survey analysis.
Mats Lidell <matsl@xemacs.org>
parents: 70
diff changeset
9 under the terms of the GNU General Public License as published by the
9fc91aa3a927 Converted tooltalk to GPLv3 according to GPLv3 source survey analysis.
Mats Lidell <matsl@xemacs.org>
parents: 70
diff changeset
10 Free Software Foundation, either version 3 of the License, or (at your
9fc91aa3a927 Converted tooltalk to GPLv3 according to GPLv3 source survey analysis.
Mats Lidell <matsl@xemacs.org>
parents: 70
diff changeset
11 option) any later version.
9fc91aa3a927 Converted tooltalk to GPLv3 according to GPLv3 source survey analysis.
Mats Lidell <matsl@xemacs.org>
parents: 70
diff changeset
12
9fc91aa3a927 Converted tooltalk to GPLv3 according to GPLv3 source survey analysis.
Mats Lidell <matsl@xemacs.org>
parents: 70
diff changeset
13 XEmacs is distributed in the hope that it will be useful, but WITHOUT
9fc91aa3a927 Converted tooltalk to GPLv3 according to GPLv3 source survey analysis.
Mats Lidell <matsl@xemacs.org>
parents: 70
diff changeset
14 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
9fc91aa3a927 Converted tooltalk to GPLv3 according to GPLv3 source survey analysis.
Mats Lidell <matsl@xemacs.org>
parents: 70
diff changeset
15 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
9fc91aa3a927 Converted tooltalk to GPLv3 according to GPLv3 source survey analysis.
Mats Lidell <matsl@xemacs.org>
parents: 70
diff changeset
16 for more details.
9fc91aa3a927 Converted tooltalk to GPLv3 according to GPLv3 source survey analysis.
Mats Lidell <matsl@xemacs.org>
parents: 70
diff changeset
17
9fc91aa3a927 Converted tooltalk to GPLv3 according to GPLv3 source survey analysis.
Mats Lidell <matsl@xemacs.org>
parents: 70
diff changeset
18 You should have received a copy of the GNU General Public License
9fc91aa3a927 Converted tooltalk to GPLv3 according to GPLv3 source survey analysis.
Mats Lidell <matsl@xemacs.org>
parents: 70
diff changeset
19 along with XEmacs. If not, see <http://www.gnu.org/licenses/>. */
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
20
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
21 /* See `tooltalk-make-client-frame-handler' in the file
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
22 lisp/tooltalk/tooltalk-init.el for the receiver side. */
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
23
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
24 #include <desktop/tt_c.h>
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
25 #include <stdio.h>
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
26 #include <stdlib.h>
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
27 #include <sys/wait.h>
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
28
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
29 Tt_status tter;
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
30
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
31 #define exit_err_ptr(ptr) \
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
32 if ((tter = tt_ptr_error(ptr)) != TT_OK) \
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
33 { fprintf(stderr, "%d:%s\n", __LINE__, tt_status_message(tter)); exit(1); }
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
34
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
35 #define exit_err(stat) \
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
36 if ((tter = stat) != TT_OK) \
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
37 { fprintf(stderr, "%d:%s\n", __LINE__, tt_status_message(tter)); exit(1); }
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
38
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
39 Tt_callback_action callback_fn(Tt_message msg, Tt_pattern pat);
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
40 static Tt_message create_new_message(char *name, int height, int width);
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
41 static int initialize_tooltalk(void);
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
42 static void usage(void);
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
43
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
44 static char* tt_procid;
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
45
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
46 Tt_callback_action
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
47 callback_fn(Tt_message msg, Tt_pattern pat)
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
48 {
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
49 tt_message_destroy(msg);
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
50 return TT_CALLBACK_PROCESSED;
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
51 }
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
52
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
53 static Tt_message
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
54 create_new_message(char *name, int height, int width)
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
55 {
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
56 Tt_message msg;
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
57
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
58 msg = tt_message_create();
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
59 exit_err_ptr(msg);
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
60
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
61 exit_err(tt_message_address_set (msg, TT_PROCEDURE));
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
62 exit_err(tt_message_class_set (msg, TT_REQUEST));
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
63 exit_err(tt_message_scope_set (msg, TT_SESSION));
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
64 exit_err(tt_message_op_set (msg, "emacs-make-client-frame"));
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
65 exit_err(tt_message_arg_add (msg, TT_IN, "string", name));
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
66 exit_err(tt_message_iarg_add (msg, TT_IN, "int", height));
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
67 exit_err(tt_message_iarg_add (msg, TT_IN, "int", width));
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
68 exit_err(tt_message_callback_add(msg, callback_fn));
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
69
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
70 return msg;
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
71 }
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
72
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
73 static int
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
74 initialize_tooltalk(void) {
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
75 int rcode;
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
76
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
77 tt_procid = tt_open();
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
78 if ((rcode = tt_ptr_error(tt_procid)) != TT_OK) {
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
79 return rcode;
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
80 }
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
81
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
82 if ((rcode = tt_session_join(tt_default_session())) != TT_OK) {
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
83 return (rcode);
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
84 }
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
85 }
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
86
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
87
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
88 static void
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
89 usage(void)
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
90 {
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
91 fprintf(stderr,
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
92 "Usage: make-client-frame name height width\n\n");
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
93 }
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
94
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
95 void
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
96 main(argc, argv)
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
97 int argc;
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
98 char *argv[];
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
99 {
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
100
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
101 Tt_message msg;
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
102
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
103 if (argc != 4) {
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
104 usage();
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
105 exit(0);
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
106 }
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
107
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
108 exit_err(initialize_tooltalk());
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
109
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
110 msg = create_new_message(argv[1], atoi(argv[2]), atoi(argv[3]));
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
111
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
112 exit_err(tt_message_send(msg));
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
113
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
114 return;
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents:
diff changeset
115 }