home *** CD-ROM | disk | FTP | other *** search
/ Education Sampler 1992 [NeXTSTEP] / Education_1992_Sampler.iso / NeXT / GnuSource / emacs-15.0.3 / src / config.h < prev    next >
C/C++ Source or Header  |  1990-08-09  |  4KB  |  118 lines

  1. /* GNU Emacs site configuration template file.
  2.    Copyright (C) 1988 Free Software Foundation, Inc.
  3.  
  4. This file is part of GNU Emacs.
  5.  
  6. GNU Emacs is distributed in the hope that it will be useful,
  7. but WITHOUT ANY WARRANTY.  No author or distributor
  8. accepts responsibility to anyone for the consequences of using it
  9. or for whether it serves any particular purpose or works at all,
  10. unless he says so in writing.  Refer to the GNU Emacs General Public
  11. License for full details.
  12.  
  13. Everyone is granted permission to copy, modify and redistribute
  14. GNU Emacs, but only under the conditions described in the
  15. GNU Emacs General Public License.   A copy of this license is
  16. supposed to have been given to you along with GNU Emacs so you
  17. can know your rights and responsibilities.  It should be in a
  18. file named COPYING.  Among other things, the copyright notice
  19. and this notice must be preserved on all copies.  */
  20.  
  21.  
  22.  
  23. /* Include here a s- file that describes the system type you are using.
  24.    See the file ../etc/MACHINES for a list of systems and
  25.    the names of the s- files to use for them.
  26.    See s-template.h for documentation on writing s- files.  */
  27. #include "s-mach.h"
  28.  
  29. /* Include here a m- file that describes the machine and system you use.
  30.    See the file ../etc/MACHINES for a list of machines and
  31.    the names of the m- files to use for them.
  32.    See m-template.h for info on what m- files should define.
  33.    */
  34. #include "m-NeXT.h"
  35.  
  36. /* Load in the conversion definitions if this system
  37.    needs them and the source file being compiled has not
  38.    said to inhibit this.  There should be no need for you
  39.    to alter these lines.  */
  40.  
  41. #ifdef SHORTNAMES
  42. #ifndef NO_SHORTNAMES
  43. #include "../shortnames/remap.h"
  44. #endif /* not NO_SHORTNAMES */
  45. #endif /* SHORTNAMES */
  46.  
  47. /* Define HAVE_X_WINDOWS if you want to use the X window system.  */
  48.  
  49. /* #define HAVE_X_WINDOWS */
  50.  
  51. /* Define X11 if you want to use version 11 of X windows.
  52.    Otherwise, Emacs expects to use version 10.  */
  53.  
  54. /* #define X11 */
  55.  
  56. /* Define HAVE_X_MENU if you want to use the X window menu system.
  57.    This appears to work on some machines that support X
  58.    and not on others.  */
  59.  
  60. /* #define HAVE_X_MENU */
  61.  
  62. /* Define `subprocesses' should be defined if you want to
  63.    have code for asynchronous subprocesses
  64.    (as used in M-x compile and M-x shell).
  65.    These do not work for some USG systems yet;
  66.    for the ones where they work, the s-*.h file defines this flag.  */
  67.  
  68. #ifndef VMS
  69. #ifndef USG
  70. #define subprocesses
  71. #endif
  72. #endif
  73.  
  74. /* Define USER_FULL_NAME to return a string
  75.    that is the user's full name.
  76.    It can assume that the variable `pw'
  77.    points to the password file entry for this user.
  78.  
  79.    At some sites, the pw_gecos field contains
  80.    the user's full name.  If neither this nor any other
  81.    field contains the right thing, use pw_name,
  82.    giving the user's login name, since that is better than nothing.  */
  83.  
  84. #define USER_FULL_NAME pw->pw_gecos
  85.  
  86. /* Define AMPERSAND_FULL_NAME if you use the convention
  87.    that & in the full name stands for the login id.  */
  88.  
  89. /* #define AMPERSAND_FULL_NAME */
  90.  
  91. /* Maximum screen width we handle. */
  92.  
  93. #define MScreenWidth 300
  94.  
  95. /* Maximum screen length we handle. */
  96.  
  97. #define MScreenLength 300
  98.  
  99. /* # bytes of pure Lisp code to leave space for.
  100.    Note that s-vms.h and m-sun2.h may override this default.  */
  101.  
  102. #ifndef PURESIZE
  103. #ifdef HAVE_X_WINDOWS
  104. #define PURESIZE 122000
  105. #else
  106. #define PURESIZE 118000
  107. #endif
  108. #endif
  109.  
  110. /* Define HIGHPRI as a negative number
  111.    if you want Emacs to run at a higher than normal priority.
  112.    For this to take effect, you must install Emacs with setuid root.
  113.    Emacs will change back to the users's own uid after setting
  114.    its priority.  */
  115.  
  116. /* #define HIGHPRI */
  117.  
  118.