annotate src/general.c @ 197:acd284d43ca1 r20-3b25

Import from CVS: tag r20-3b25
author cvs
date Mon, 13 Aug 2007 10:00:02 +0200
parents 0132846995bd
children e45d5e7c476e
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1 /* Commonly-used symbols
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2 Copyright (C) 1995 Sun Microsystems.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3 Copyright (C) 1995, 1996 Ben Wing.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5 This file is part of XEmacs.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
7 XEmacs is free software; you can redistribute it and/or modify it
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
8 under the terms of the GNU General Public License as published by the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
9 Free Software Foundation; either version 2, or (at your option) any
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
10 later version.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
11
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
12 XEmacs is distributed in the hope that it will be useful, but WITHOUT
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
13 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
15 for more details.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
16
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
17 You should have received a copy of the GNU General Public License
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
18 along with XEmacs; see the file COPYING. If not, write to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
19 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
20 Boston, MA 02111-1307, USA. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
21
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
22 /* Synched up with: Not in FSF. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
23
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
24 /* The purpose of this file is as a central place to stick symbols
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
25 that don't have any obvious connection to any particular module
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
26 and might be used in many different contexts.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
27
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
28 #### More should be put here.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
29 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
30
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
31 #include <config.h>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
32 #include "lisp.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
33
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
34 Lisp_Object Qactually_requested;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
35 Lisp_Object Qafter;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
36 Lisp_Object Qall;
163
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 122
diff changeset
37 Lisp_Object Qand;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
38 Lisp_Object Qassoc;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
39 Lisp_Object Qat;
122
d2f30a177268 Import from CVS: tag r20-1b14
cvs
parents: 120
diff changeset
40 Lisp_Object Qautodetect;
120
cca96a509cfe Import from CVS: tag r20-1b12
cvs
parents: 70
diff changeset
41 Lisp_Object Qautomatic_conversion;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
42 Lisp_Object Qbad_variable;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
43 Lisp_Object Qbefore;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
44 Lisp_Object Qbinary;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
45 Lisp_Object Qblack;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
46 Lisp_Object Qboolean;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
47 Lisp_Object Qbottom;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
48 Lisp_Object Qbuffer;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
49 Lisp_Object Qbutton;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
50 Lisp_Object Qcategory;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
51 Lisp_Object Qcase;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
52 Lisp_Object Qchannel;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
53 Lisp_Object Qchar;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
54 Lisp_Object Qcharacter;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
55 Lisp_Object Qchars;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
56 Lisp_Object Qcolor;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
57 Lisp_Object Qcolumns;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
58 Lisp_Object Qcommand;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
59 Lisp_Object Qconsole;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
60 Lisp_Object Qcritical;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
61 Lisp_Object Qdata;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
62 Lisp_Object Qdead;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
63 Lisp_Object Qdefault;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
64 Lisp_Object Qdelete;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
65 Lisp_Object Qdelq;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
66 Lisp_Object Qdevice;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
67 Lisp_Object Qdimension;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
68 Lisp_Object Qdisplay;
197
acd284d43ca1 Import from CVS: tag r20-3b25
cvs
parents: 163
diff changeset
69 #ifdef HAVE_OFFIX_DND
acd284d43ca1 Import from CVS: tag r20-3b25
cvs
parents: 163
diff changeset
70 Lisp_Object Qdnd_data;
acd284d43ca1 Import from CVS: tag r20-3b25
cvs
parents: 163
diff changeset
71 #endif
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
72 Lisp_Object Qdoc_string;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
73 Lisp_Object Qdynarr_overhead;
122
d2f30a177268 Import from CVS: tag r20-1b14
cvs
parents: 120
diff changeset
74 Lisp_Object Qempty;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
75 Lisp_Object Qeq;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
76 Lisp_Object Qequal;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
77 Lisp_Object Qeql;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
78 Lisp_Object Qeval;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
79 Lisp_Object Qextents;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
80 Lisp_Object Qface;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
81 Lisp_Object Qfont;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
82 Lisp_Object Qframe;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
83 Lisp_Object Qfunction;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
84 Lisp_Object Qgap_overhead;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
85 Lisp_Object Qgeneric;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
86 Lisp_Object Qgeometry;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
87 Lisp_Object Qglobal;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
88 Lisp_Object Qheight;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
89 Lisp_Object Qhighlight;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
90 Lisp_Object Qid;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
91 Lisp_Object Qimage;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
92 Lisp_Object Qinfo;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
93 Lisp_Object Qinherit;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
94 Lisp_Object Qinteger;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
95 Lisp_Object Qinternal;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
96 Lisp_Object Qkey;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
97 Lisp_Object Qkey_assoc;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
98 Lisp_Object Qkeyboard;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
99 Lisp_Object Qkeymap;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
100 Lisp_Object Qleft;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
101 Lisp_Object Qlist;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
102 Lisp_Object Qmagic;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
103 Lisp_Object Qmalloc_overhead;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
104 Lisp_Object Qmarkers;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
105 Lisp_Object Qmax;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
106 Lisp_Object Qmemory;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
107 Lisp_Object Qmenubar;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
108 Lisp_Object Qmessage;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
109 Lisp_Object Qminus;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
110 Lisp_Object Qmodifiers;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
111 Lisp_Object Qmotion;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
112 Lisp_Object Qname;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
113 Lisp_Object Qnone;
163
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 122
diff changeset
114 Lisp_Object Qnot;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
115 Lisp_Object Qnothing;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
116 Lisp_Object Qnotice;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
117 Lisp_Object Qobject;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
118 Lisp_Object Qonly;
163
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 122
diff changeset
119 Lisp_Object Qor;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
120 Lisp_Object Qother;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
121 Lisp_Object Qpath;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
122 Lisp_Object Qpointer;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
123 Lisp_Object Qprint;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
124 Lisp_Object Qprocess;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
125 Lisp_Object Qprovide;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
126 Lisp_Object Qrassoc;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
127 Lisp_Object Qrassq;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
128 Lisp_Object Qrequire;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
129 Lisp_Object Qresource;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
130 Lisp_Object Qreturn;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
131 Lisp_Object Qreverse;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
132 Lisp_Object Qright;
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 50
diff changeset
133 Lisp_Object Qold_assoc;
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 50
diff changeset
134 Lisp_Object Qold_delete;
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 50
diff changeset
135 Lisp_Object Qold_delq;
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 50
diff changeset
136 Lisp_Object Qold_rassoc;
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 50
diff changeset
137 Lisp_Object Qold_rassq;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
138 Lisp_Object Qsearch;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
139 Lisp_Object Qsimple;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
140 Lisp_Object Qspace;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
141 Lisp_Object Qspecifier;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
142 Lisp_Object Qstream;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
143 Lisp_Object Qstring;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
144 Lisp_Object Qsymbol;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
145 Lisp_Object Qsyntax;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
146 Lisp_Object Qtext;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
147 Lisp_Object Qtimeout;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
148 Lisp_Object Qtimestamp;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
149 Lisp_Object Qtoolbar;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
150 Lisp_Object Qtop;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
151 Lisp_Object Qtty;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
152 Lisp_Object Qtype;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
153 Lisp_Object Qundefined;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
154 Lisp_Object Qunimplemented;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
155 Lisp_Object Qvalue_assoc;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
156 Lisp_Object Qvector;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
157 Lisp_Object Qwarning;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
158 Lisp_Object Qwhite;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
159 Lisp_Object Qwidth;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
160 Lisp_Object Qwindow;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
161 Lisp_Object Qwindow_system;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
162 Lisp_Object Qx;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
163 Lisp_Object Qy;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
164
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
165 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
166 syms_of_general (void)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
167 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
168 defsymbol (&Qminus, "-");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
169 defsymbol (&Qactually_requested, "actually-requested");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
170 defsymbol (&Qafter, "after");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
171 defsymbol (&Qall, "all");
163
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 122
diff changeset
172 defsymbol (&Qand, "and");
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
173 defsymbol (&Qassoc, "assoc");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
174 defsymbol (&Qat, "at");
122
d2f30a177268 Import from CVS: tag r20-1b14
cvs
parents: 120
diff changeset
175 defsymbol (&Qautodetect, "autodetect");
120
cca96a509cfe Import from CVS: tag r20-1b12
cvs
parents: 70
diff changeset
176 defsymbol (&Qautomatic_conversion, "automatic-conversion");
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
177 defsymbol (&Qbad_variable, "bad-variable");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
178 defsymbol (&Qbefore, "before");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
179 defsymbol (&Qbinary, "binary");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
180 defsymbol (&Qblack, "black");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
181 defsymbol (&Qboolean, "boolean");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
182 defsymbol (&Qbottom, "bottom");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
183 defsymbol (&Qbuffer, "buffer");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
184 defsymbol (&Qbutton, "button");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
185 defsymbol (&Qcase, "case");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
186 defsymbol (&Qcategory, "category");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
187 defsymbol (&Qchannel, "channel");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
188 defsymbol (&Qchar, "char");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
189 defsymbol (&Qcharacter, "character");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
190 defsymbol (&Qchars, "chars");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
191 defsymbol (&Qcolor, "color");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
192 defsymbol (&Qcolumns, "columns");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
193 defsymbol (&Qcommand, "command");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
194 defsymbol (&Qconsole, "console");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
195 defsymbol (&Qcritical, "critical");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
196 defsymbol (&Qdata, "data");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
197 defsymbol (&Qdead, "dead");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
198 defsymbol (&Qdefault, "default");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
199 defsymbol (&Qdelete, "delete");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
200 defsymbol (&Qdelq, "delq");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
201 defsymbol (&Qdevice, "device");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
202 defsymbol (&Qdimension, "dimension");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
203 defsymbol (&Qdisplay, "display");
197
acd284d43ca1 Import from CVS: tag r20-3b25
cvs
parents: 163
diff changeset
204 #ifdef HAVE_OFFIX_DND
acd284d43ca1 Import from CVS: tag r20-3b25
cvs
parents: 163
diff changeset
205 defsymbol (&Qdnd_data, "dnd-data");
acd284d43ca1 Import from CVS: tag r20-3b25
cvs
parents: 163
diff changeset
206 #endif
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
207 defsymbol (&Qdoc_string, "doc-string");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
208 defsymbol (&Qdynarr_overhead, "dynarr-overhead");
122
d2f30a177268 Import from CVS: tag r20-1b14
cvs
parents: 120
diff changeset
209 defsymbol (&Qempty, "empty");
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
210 defsymbol (&Qeq, "eq");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
211 defsymbol (&Qequal, "equal");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
212 defsymbol (&Qeql, "eql");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
213 defsymbol (&Qeval, "eval");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
214 defsymbol (&Qextents, "extents");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
215 defsymbol (&Qface, "face");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
216 defsymbol (&Qfont, "font");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
217 defsymbol (&Qframe, "frame");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
218 defsymbol (&Qfunction, "function");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
219 defsymbol (&Qgap_overhead, "gap-overhead");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
220 defsymbol (&Qgeneric, "generic");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
221 defsymbol (&Qgeometry, "geometry");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
222 defsymbol (&Qglobal, "global");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
223 defsymbol (&Qheight, "height");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
224 defsymbol (&Qhighlight, "highlight");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
225 defsymbol (&Qid, "id");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
226 defsymbol (&Qimage, "image");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
227 defsymbol (&Qinfo, "info");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
228 defsymbol (&Qinteger, "integer");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
229 defsymbol (&Qinherit, "inherit");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
230 defsymbol (&Qinternal, "internal");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
231 defsymbol (&Qkey, "key");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
232 defsymbol (&Qkey_assoc, "key-assoc");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
233 defsymbol (&Qkeyboard, "keyboard");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
234 defsymbol (&Qkeymap, "keymap");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
235 defsymbol (&Qleft, "left");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
236 defsymbol (&Qlist, "list");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
237 defsymbol (&Qmagic, "magic");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
238 defsymbol (&Qmalloc_overhead, "malloc-overhead");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
239 defsymbol (&Qmarkers, "markers");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
240 defsymbol (&Qmax, "max");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
241 defsymbol (&Qmemory, "memory");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
242 defsymbol (&Qmenubar, "menubar");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
243 defsymbol (&Qmessage, "message");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
244 defsymbol (&Qmodifiers, "modifiers");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
245 defsymbol (&Qmotion, "motion");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
246 defsymbol (&Qminus, "-");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
247 defsymbol (&Qname, "name");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
248 defsymbol (&Qnone, "none");
163
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 122
diff changeset
249 defsymbol (&Qnot, "not");
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
250 defsymbol (&Qnothing, "nothing");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
251 defsymbol (&Qnotice, "notice");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
252 defsymbol (&Qobject, "object");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
253 defsymbol (&Qonly, "only");
163
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 122
diff changeset
254 defsymbol (&Qor, "or");
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
255 defsymbol (&Qother, "other");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
256 defsymbol (&Qpath, "path");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
257 defsymbol (&Qpointer, "pointer");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
258 defsymbol (&Qprint, "print");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
259 defsymbol (&Qprocess, "process");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
260 defsymbol (&Qprovide, "provide");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
261 defsymbol (&Qrassoc, "rassoc");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
262 defsymbol (&Qrassq, "rassq");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
263 defsymbol (&Qrequire, "require");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
264 defsymbol (&Qreturn, "return");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
265 defsymbol (&Qreverse, "reverse");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
266 defsymbol (&Qright, "right");
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 50
diff changeset
267 defsymbol (&Qold_assoc, "old-assoc");
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 50
diff changeset
268 defsymbol (&Qold_delete, "old-delete");
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 50
diff changeset
269 defsymbol (&Qold_delq, "old-delq");
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 50
diff changeset
270 defsymbol (&Qold_rassoc, "old-rassoc");
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 50
diff changeset
271 defsymbol (&Qold_rassq, "old-rassq");
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
272 defsymbol (&Qsearch, "search");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
273 defsymbol (&Qsimple, "simple");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
274 defsymbol (&Qspace, "space");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
275 defsymbol (&Qspecifier, "specifier");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
276 defsymbol (&Qstream, "stream");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
277 defsymbol (&Qstring, "string");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
278 defsymbol (&Qsymbol, "symbol");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
279 defsymbol (&Qsyntax, "syntax");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
280 defsymbol (&Qtext, "text");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
281 defsymbol (&Qtimeout, "timeout");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
282 defsymbol (&Qtimestamp, "timestamp");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
283 defsymbol (&Qtoolbar, "toolbar");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
284 defsymbol (&Qtop, "top");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
285 defsymbol (&Qtty, "tty");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
286 defsymbol (&Qtype, "type");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
287 defsymbol (&Qundefined, "undefined");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
288 defsymbol (&Qunimplemented, "unimplemented");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
289 defsymbol (&Qvalue_assoc, "value-assoc");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
290 defsymbol (&Qvector, "vector");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
291 defsymbol (&Qwarning, "warning");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
292 defsymbol (&Qwhite, "white");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
293 defsymbol (&Qwidth, "width");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
294 defsymbol (&Qwindow, "window");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
295 defsymbol (&Qwindow_system, "window-system");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
296 defsymbol (&Qx, "x");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
297 defsymbol (&Qy, "y");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
298 }