Mercurial > hg > xemacs-beta
annotate src/s/template.h @ 4905:755ae5b97edb
Change "special form" to "special operator" in our sources.
Add a compatible function alias, and the relevant manual index entries.
src/ChangeLog addition:
2010-01-31 Aidan Kehoe <kehoea@parhasard.net>
* symbols.c (Fspecial_operator_p, syms_of_symbols):
* eval.c (print_subr, Finteractive_p, Ffuncall)
(Ffunction_min_args, Ffunction_max_args, vars_of_eval):
* editfns.c:
* data.c (Fsubr_max_args):
* doc.c (Fbuilt_in_symbol_file):
Change "special form" to "special operator" in our sources.
man/ChangeLog addition:
2010-01-31 Aidan Kehoe <kehoea@parhasard.net>
* xemacs/programs.texi (Defuns):
* lispref/variables.texi (Local Variables, Defining Variables)
(Setting Variables, Default Value):
* lispref/symbols.texi (Definitions):
* lispref/searching.texi (Saving Match Data):
* lispref/positions.texi (Excursions, Narrowing):
* lispref/objects.texi (Primitive Function Type):
* lispref/macros.texi (Defining Macros, Backquote):
* lispref/lispref.texi (Top):
* lispref/intro.texi (A Sample Function Description):
* lispref/help.texi (Help Functions):
* lispref/functions.texi (What Is a Function, Simple Lambda)
(Defining Functions, Calling Functions, Anonymous Functions):
* lispref/frames.texi (Input Focus):
* lispref/eval.texi (Forms, Function Indirection)
(Special Operators, Quoting):
* lispref/edebug-inc.texi (Instrumenting)
(Specification Examples):
* lispref/debugging.texi (Internals of Debugger):
* lispref/control.texi (Control Structures, Sequencing):
(Conditionals, Combining Conditions, Iteration):
(Catch and Throw, Handling Errors):
* lispref/commands.texi (Defining Commands, Using Interactive):
Terminology change; special operator -> special form.
Don't attempt to change this in texinfo.texi or cl.texi, which use
macros I don't understand.
* lispref/macros.texi (Defining Macros): Give an anonymous macro
example here.
* lispref/positions.texi (Excursions):
Correct some documentation that called a couple of macros special
forms.
* lispref/searching.texi (Saving Match Data):
Drop some documentation of how to write code that works with Emacs
18.
* lispref/specifiers.texi (Adding Specifications):
Correct this; #'let-specifier is a macro, not a special operator.
* lispref/windows.texi (Window Configurations)
(Selecting Windows):
Correct this, #'save-selected-window and #'save-window-excursion
are macros, not special operators.
lisp/ChangeLog addition:
2010-01-31 Aidan Kehoe <kehoea@parhasard.net>
* obsolete.el:
* loadhist.el (symbol-file):
* help.el (describe-function-1):
* bytecomp.el: (byte-compile-save-current-buffer):
* byte-optimize.el (byte-optimize-form-code-walker):
* subr.el (subr-arity):
Change "special form" to "special operator" in these files, it's
the more logical term.
* subr.el (special-form-p): Provide this alias for
#'special-operator-p.
author | Aidan Kehoe <kehoea@parhasard.net> |
---|---|
date | Sun, 31 Jan 2010 20:28:01 +0000 |
parents | aa5ed11f473b |
children | 308d34e9f07d |
rev | line source |
---|---|
428 | 1 /* Template for system description header files. |
2 This file describes the parameters that system description files | |
3 should define or not. | |
4 Copyright (C) 1985, 1986, 1992 Free Software Foundation, Inc. | |
5 | |
613 | 6 This file is part of XEmacs. |
428 | 7 |
613 | 8 XEmacs is free software; you can redistribute it and/or modify |
428 | 9 it under the terms of the GNU General Public License as published by |
10 the Free Software Foundation; either version 2, or (at your option) | |
11 any later version. | |
12 | |
613 | 13 XEmacs is distributed in the hope that it will be useful, |
428 | 14 but WITHOUT ANY WARRANTY; without even the implied warranty of |
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
16 GNU General Public License for more details. | |
17 | |
18 You should have received a copy of the GNU General Public License | |
19 along with XEmacs; see the file COPYING. If not, write to | |
20 the Free Software Foundation, Inc., 59 Temple Place - Suite 330, | |
21 Boston, MA 02111-1307, USA. */ | |
22 | |
23 /* Synched up with: FSF 19.31. */ | |
24 | |
25 /* | |
26 * Define symbols to identify the version of Unix this is. | |
27 * Define all the symbols that apply correctly. | |
28 */ | |
29 | |
30 /* #define UNIPLUS */ | |
31 /* #define USG5 */ | |
32 /* #define USG */ | |
33 /* #define HPUX */ | |
34 /* #define UMAX */ | |
35 /* #define BSD4_3 */ | |
36 /* #define BSD */ | |
37 | |
38 /* SYSTEM_TYPE should indicate the kind of system you are using. | |
39 It sets the Lisp variable system-type. */ | |
40 | |
41 #define SYSTEM_TYPE "berkeley-unix" | |
42 | |
43 /* Letter to use in finding device name of first pty, | |
44 if system supports pty's. 'a' means it is /dev/ptya0 */ | |
45 | |
535 | 46 #define FIRST_PTY_LETTER 'p' |
428 | 47 |
48 /* If your system uses COFF (Common Object File Format) then define the | |
49 preprocessor symbol "COFF". */ | |
50 | |
51 /* #define COFF */ | |
52 | |
53 /* define MAIL_USE_FLOCK if the mailer uses flock | |
54 to interlock access to /usr/spool/mail/$USER. | |
55 The alternative is that a lock file named | |
56 /usr/spool/mail/$USER.lock. */ | |
57 | |
58 #define MAIL_USE_FLOCK | |
59 | |
60 /* If the character used to separate elements of the executable path | |
61 is not ':', #define this to be the appropriate character constant. */ | |
62 /* #define SEPCHAR ':' */ | |
63 | |
64 /* ============================================================ */ | |
65 | |
66 /* Here, add any special hacks needed | |
67 to make Emacs work on this system. For example, | |
68 you might define certain system call names that don't | |
69 exist on your system, or that do different things on | |
70 your system and must be used only through an encapsulation | |
71 (Which you should place, by convention, in sysdep.c). */ | |
72 | |
73 /* ============================================================ */ | |
74 | |
75 /* After adding support for a new system, modify the large case | |
76 statement in the `configure' script to recognize reasonable | |
77 configuration names, and add a description of the system to | |
78 `etc/MACHINES'. | |
79 | |
80 If you've just fixed a problem in an existing configuration file, | |
81 you should also check `etc/MACHINES' to make sure its descriptions | |
82 of known problems in that configuration should be updated. */ |