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.linux < prev    next >
Encoding:
Text File  |  1994-04-17  |  1.3 KB  |  79 lines

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