diff options
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/modules/xedit.lsp | 4 | ||||
-rw-r--r-- | lisp/private.h | 9 |
2 files changed, 11 insertions, 2 deletions
diff --git a/lisp/modules/xedit.lsp b/lisp/modules/xedit.lsp index 87a85c7..f59517e 100644 --- a/lisp/modules/xedit.lsp +++ b/lisp/modules/xedit.lsp @@ -27,7 +27,7 @@ ;; Author: Paulo César Pereira de Andrade ;; ;; -;; $XFree86: xc/programs/xedit/lisp/modules/xedit.lsp,v 1.10 2003/01/16 06:25:50 paulo Exp $ +;; $XFree86: xc/programs/xedit/lisp/modules/xedit.lsp,v 1.11 2003/12/11 16:03:30 paulo Exp $ ;; (provide "xedit") @@ -77,6 +77,8 @@ "RPM spec" "rpm" . *rpm-mode*) ("\\<XFree86\\.\\d+\\.log$" "XFree86 log" "xlog" . *xlog-mode*) + ("\\.(diff|patch)" + "Patch file" "patch" . *patch-mode*) )) diff --git a/lisp/private.h b/lisp/private.h index 6b78d02..dd78caa 100644 --- a/lisp/private.h +++ b/lisp/private.h @@ -27,15 +27,22 @@ * Author: Paulo César Pereira de Andrade */ -/* $XFree86: xc/programs/xedit/lisp/private.h,v 1.41 2003/05/27 22:27:04 tsi Exp $ */ +/* $XFree86: xc/programs/xedit/lisp/private.h,v 1.42 2003/12/17 17:45:33 dawes Exp $ */ #ifndef Lisp_private_h #define Lisp_private_h +#include <X11/Xos.h> #include <stdio.h> #include <stdlib.h> #include <string.h> +#if defined(X_POSIX_C_SOURCE) +#define _POSIX_C_SOURCE X_POSIX_C_SOURCE #include <setjmp.h> +#undef _POSIX_C_SOURCE +#else +#include <setjmp.h> +#endif #include <unistd.h> #include <sys/time.h> #include "lisp/internal.h" |