home *** CD-ROM | disk | FTP | other *** search
/ Fresh Fish 5 / FreshFish_July-August1994.bin / bbs / util / jade-3.0.lha / Jade / src / configs / config.h.std < prev    next >
Encoding:
Text File  |  1994-04-17  |  1.6 KB  |  87 lines

  1. /* config.h.std -- User-configuration for Unix version of Jade */
  2.  
  3. #ifndef _CONFIG_H
  4. #define _CONFIG_H
  5.  
  6. /*
  7.  * Release of X11 you have
  8.  */
  9. #define HAVE_X11 5
  10.  
  11. #define HAVE_UNIX
  12.  
  13. #include "unix_defs.h"
  14. #include "x11_defs.h"
  15.  
  16. /*
  17.  * The name of the editor's directory. Must have a terminating '/'
  18.  */
  19. #define JADE_DIR "/usr/local/jade/"
  20.  
  21. /*
  22.  * How to get the string for `errno'. See config.h.sun for a method if
  23.  * you don't have strerror()
  24.  */
  25. #define ERRNO_STRING strerror(errno)
  26.  
  27. /*
  28.  * character of first pty
  29.  */
  30. #define FIRST_PTY_LETTER 'p'
  31.  
  32. /*
  33.  * default directory to look for scripts in, this shouldn't need changing.
  34.  */
  35. #define LISP_LIB_DIR JADE_DIR "lisp/"
  36.  
  37. /*
  38.  * file containing doc-strings, this shouldn't need changing.
  39.  */
  40. #define DOC_FILE JADE_DIR "DOC-strings"
  41.  
  42. /*
  43.  * if you have a stpcpy() define this symbol
  44.  */
  45. /* #define HAVE_STPCPY */
  46.  
  47. #ifndef HAVE_STPCPY
  48. extern char *stpcpy(char *, const char *);
  49. #endif
  50.  
  51. /*
  52.  * if defined swap the meaning of "backspace" and "delete" event specifiers.
  53.  */
  54. #define SWAP_DELETE_KEYS
  55.  
  56. /*
  57.  * standard font
  58.  */
  59. #define DEFAULT_FONT "fixed"
  60.  
  61. /*
  62.  * Width of border for windows, don't change.
  63.  */
  64. #define WINDOW_BORDER_WIDTH 1
  65.  
  66. /*
  67.  * timeout length. This determines how much time with no events received
  68.  * is needed before looking for buffers which are due to be auto-saved.
  69.  */
  70. #define EVENT_TIMEOUT_LENGTH 2
  71.  
  72. /*
  73.  * max number of milliseconds between double-clicks
  74.  */
  75. #define DOUBLE_CLICK_TIME 250
  76.  
  77. /*
  78.  * If a (working) alloca() is around define this
  79.  */
  80. #define HAVE_ALLOCA
  81.  
  82. /*
  83.  */
  84. /* #define FULL_NAME_TERMINATOR */
  85.  
  86. #endif /* _CONFIG_H */
  87.