]> code.delx.au - gnu-emacs/blobdiff - lisp/progmodes/cmacexp.el
When compiling, require compare-w and skeleton
[gnu-emacs] / lisp / progmodes / cmacexp.el
index 0eaac943382bb5db0e3fa9dfec5f1b85e86225ec..82d90d6d5999cd71da372676b35496751a511dd6 100644 (file)
@@ -1,9 +1,8 @@
 ;;; cmacexp.el --- expand C macros in a region
 
-;; Copyright (C) 1992, 1994 Free Software Foundation, Inc.
+;; Copyright (C) 1992, 1994, 1996 Free Software Foundation, Inc.
 
 ;; Author: Francesco Potorti` <pot@cnuce.cnr.it>
-;; Version: $Id: cmacexp.el,v 1.20 1995/10/26 03:14:40 rms Exp erik $
 ;; Adapted-By: ESR
 ;; Keywords: c
 
 
 (provide 'cmacexp)
 
-(defvar c-macro-shrink-window-flag nil
-  "*Non-nil means shrink the *Macroexpansion* window to fit its contents.")
-
-(defvar c-macro-prompt-flag nil
-  "*Non-nil makes `c-macro-expand' prompt for preprocessor arguments.")
-
-(defvar c-macro-preprocessor "/lib/cpp -C"
+(defgroup c-macro nil
+  "Expand C macros in a region."
+  :group 'c)
+
+
+(defcustom c-macro-shrink-window-flag nil
+  "*Non-nil means shrink the *Macroexpansion* window to fit its contents."
+  :type 'boolean
+  :group 'c-macro)
+
+(defcustom c-macro-prompt-flag nil
+  "*Non-nil makes `c-macro-expand' prompt for preprocessor arguments."
+  :type 'boolean
+  :group 'c-macro)
+
+(defcustom c-macro-preprocessor
+  ;; Cannot rely on standard directory on MS-DOS to find CPP.
+  (cond ((eq system-type 'ms-dos) "cpp -C")
+       ;; Solaris has it in an unusual place.
+       ((and (string-match "^[^-]*-[^-]*-\\(solaris\\|sunos5\\)"
+                           system-configuration)
+             (file-exists-p "/opt/SUNWspro/SC3.0.1/bin/acomp"))
+        "/opt/SUNWspro/SC3.0.1/bin/acomp -C -E")
+       (t "/lib/cpp -C"))
   "The preprocessor used by the cmacexp package.
 
 If you change this, be sure to preserve the `-C' (don't strip comments)
-option, or to set an equivalent one.")
+option, or to set an equivalent one."
+  :type 'string
+  :group 'c-macro)
 
-(defvar c-macro-cppflags ""
-  "*Preprocessor flags used by `c-macro-expand'.")
+(defcustom c-macro-cppflags ""
+  "*Preprocessor flags used by `c-macro-expand'."
+  :type 'string
+  :group 'c-macro)
 
 (defconst c-macro-buffer-name "*Macroexpansion*")
 
+;;;###autoload
 (defun c-macro-expand (start end subst)
   "Expand C macros in the region, using the C preprocessor.
 Normally display output in temp buffer, but
@@ -200,7 +221,7 @@ For use inside Lisp programs, see also `c-macro-expansion'."
            (setq minheight (if alreadythere
                                (window-height)
                              window-min-height))
-           (setq maxheight (/ (screen-height) 2))
+           (setq maxheight (/ (frame-height) 2))
            (enlarge-window (- (min maxheight
                                    (max minheight
                                         (+ 2 (vertical-motion (point-max)))))
@@ -238,27 +259,30 @@ Optional arg DISPLAY non-nil means show messages in the echo area."
                       c-macro-preprocessor
                       (if (string= "" c-macro-cppflags) "" " ")
                       c-macro-cppflags))
-       (uniquestring "???!!!???!!! start of c-macro expansion ???!!!???!!!")
+       (uniquestring "??? !!! ??? start of c-macro expansion ??? !!! ???")
        (startlinenum 0)
        (linenum 0)
        (startstat ())
        (startmarker "")
        (exit-status 0)
-       (tempname (make-temp-name "/tmp/")))
+       (tempname (make-temp-name
+                  (expand-file-name "cmacexp"
+                                    temporary-file-directory))))
     (unwind-protect
        (save-excursion
          (save-restriction
            (widen)
-           (set-buffer outbuf)
-           (setq buffer-read-only nil)
-           (erase-buffer)
-           (set-syntax-table c-mode-syntax-table)
+            (let ((in-syntax-table (syntax-table)))
+              (set-buffer outbuf)
+              (setq buffer-read-only nil)
+              (erase-buffer)
+              (set-syntax-table in-syntax-table))
            (insert-buffer-substring inbuf 1 end))
 
          ;; We have copied inbuf to outbuf.  Point is at end of
-         ;; outbuf.  Insert a space at the end, so cpp can correctly
-         ;; parse a token ending at END. 
-         (insert " ")
+         ;; outbuf.  Inset a newline at the end, so cpp can correctly
+         ;; parse a token ending at END.
+          (insert "\n")
 
          ;; Save sexp status and line number at START.
          (setq startstat (parse-partial-sexp 1 start))
@@ -306,8 +330,10 @@ Optional arg DISPLAY non-nil means show messages in the echo area."
          ;; Call the preprocessor.
          (if display (message mymsg))
          (setq exit-status
-               (call-process-region 1 (point-max) "sh" t t nil "-c"
-                                    (concat cppcommand " 2>" tempname)))
+               (call-process-region 1 (point-max)
+                                    shell-file-name
+                                    t (list t tempname) nil "-c"
+                                    cppcommand))
          (if display (message (concat mymsg "done")))
          (if (= (buffer-size) 0)
              ;; Empty output is normal after a fatal error.
@@ -326,13 +352,25 @@ Optional arg DISPLAY non-nil means show messages in the echo area."
              (delete-region beg (point))))
 
          ;; If CPP got errors, show them at the beginning.
-         (or (eq exit-status 0)
+         ;; MS-DOS shells don't return the exit code of their children.
+         ;; Look at the size of the error message file instead, but
+         ;; don't punish those MS-DOS users who have a shell that does
+         ;; return an error code.
+         (or (and (or (not (boundp 'msdos-shells))
+                      (not (member (file-name-nondirectory shell-file-name)
+                                   msdos-shells)))
+                  (eq exit-status 0))
+             (zerop (nth 7 (file-attributes (expand-file-name tempname))))
              (progn
                (goto-char (point-min))
-               (insert (format "Preprocessor terminated with status %s\n"
-                               exit-status))
-               (insert-file-contents tempname)
-               (insert "\n")))
+               ;; Put the messages inside a comment, so they won't get in
+               ;; the way of font-lock, highlighting etc.
+               (insert
+                (format "/* Preprocessor terminated with status %s\n\n   Messages from `%s\':\n\n"
+                        exit-status cppcommand))
+               (goto-char (+ (point)
+                             (nth 1 (insert-file-contents tempname))))
+               (insert "\n\n*/\n")))
          (delete-file tempname)
 
          ;; Compute the return value, keeping in account the space