;ELC   
;;; compiled by rms@mole.gnu.ai.mit.edu on Tue Sep  6 03:35:08 1994
;;; from file /home/fsf/rms/e19/lisp/cmacexp.el
;;; emacs version 19.26.1.
;;; bytecomp version FSF 2.10
;;; optimization is on.
;;; this file uses opcodes which do not exist in Emacs 18.

(if (and (boundp 'emacs-version)
	 (or (and (boundp 'epoch::version) epoch::version)
	     (string-lessp emacs-version "19")))
    (error "`/home/fsf/rms/e19/lisp/cmacexp.el' was compiled for Emacs 19"))

(provide (quote 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" "\
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.")
(defvar c-macro-cppflags "" "\
*Preprocessor flags used by `c-macro-expand'.")
(byte-code "ÀÂ‡" ["*Macroexpansion*" c-macro-buffer-name nil] 1)
(defalias 'c-macro-expand #[(start end subst) "pƒ Á\n!‚ Ã\n!Äƒ  ÉÊ\"ƒJ \fƒJ „J =„J ÎÏ!ˆÐÑ!ˆÒ„J Ã\n!Ó×QØ$ƒv `U|ˆcˆ…r Ú )‚¦ qˆÒ\fÛ!ˆÜ ˆcˆÝÒ!ˆÄ˜ƒ™ ÎÞ!ˆ‚œ ß ˆØ\fÒ á!+‡" [subst get-buffer c-macro-buffer-name get-buffer-create "" expansion displaybuf inbuf c-macro-prompt-flag read-string "Preprocessor arguments: " c-macro-cppflags buffer-read-only inhibit-read-only message "Buffer is read only: displaying expansion in alternate window" sit-for 2 nil c-macro-expansion start end c-macro-preprocessor " " t exchange exchange-point-and-mark buffer-disable-undo erase-buffer set-buffer-modified-p "Null expansion" c-macro-display-buffer buffer-auto-save-file-name bury-buffer] 6 "\
Expand C macros in the region, using the C preprocessor.
Normally display output in temp buffer, but
prefix arg means replace the region with it.

`c-macro-preprocessor' specifies the preprocessor to use.
Prompt for arguments to the preprocessor (e.g. `-DDEBUG -I ./include')
if the user option `c-macro-prompt-flag' is non-nil.

Noninteractive args are START, END, SUBST.
For use inside Lisp programs, see also `c-macro-expansion'." "r\nP"])
(defalias (quote c-macro-display-buffer) #[nil "ebˆÀ ˆÁ Âp!Ã„  ÇpÈ\"ˆÁ U?	…j „- \f…j Ê Ë‰\fŠÏÂp!!ˆƒG Á ‚I Ñ Ò¥\fÓ\fÔd!Ò\\]^Á Z!ˆebˆÏ!,+‡" [c-mode window-height get-buffer-window nil popped alreadythere oldwinheight display-buffer t c-macro-shrink-window-flag selected-window 0 maxheight minheight oldwin select-window window-min-height screen-height 2 enlarge-window vertical-motion] 5])
(defalias 'c-macro-expansion #[(start end cppcommand &optional display) "pÀÁ!\nƒ ÃÄ!\n\"ƒ \nÆ•ÇO‚ È ÉÊ\fÍ˜ƒ* Í‚+ Î\f$ÏÆ‰ÇÍÆÐÑ!ÝŽŠŒ~ˆqˆÇß ˆà!!ˆâã$#ˆ)Îcˆåã&\"çã`\"nƒ� ã‚‚ Æ\\dbˆèé&ê#ƒ¿ ëå&`Ç‰%›ìšƒˆ Æ•bˆç&`\"\\Éí#cˆÆ”bˆ‚ˆ ë8.ï80ñ82ó842ƒà Î‚á Í.ƒí õ.!‚÷ 0ƒö ö‚÷ ÍÉí#.ƒ\fõ.!‚0ƒ÷‚4…ø2…!ùQ‰±ˆ,:ƒ3û!ˆüãdýþ‰Çÿ@�A Q&:ƒUû�B P!ˆ�C  ÆUƒf�D cˆ‚tebˆ�E !ˆã`|ˆ�F �G Ä!�H QÇþ#ƒšÆyˆ`IãyˆI`|ˆ)‚tÆ=„¹ebˆÉ�J \"cˆ�K !ˆ�L cˆ�M !ˆã‰dãZ]{.‡" [get-buffer-create " *C Macro Expansion*" buffer-file-name string-match regexp-quote default-directory 0 nil buffer-name format "Invoking %s%s%s on region..." c-macro-preprocessor c-macro-cppflags "" " " "???!!!???!!! start of c-macro expansion ???!!!???!!!" make-temp-name "/tmp/" tempname exit-status startmarker startstat linenum startlinenum uniquestring mymsg filename outbuf inbuf ((kill-buffer outbuf)) buffer-read-only erase-buffer set-syntax-table c-mode-syntax-table insert-buffer-substring 1 end parse-partial-sexp start count-lines re-search-backward "\n#\\(endif\\|else\\)\\>" move 3 (nil nil nil 0 nil) "\n#line %d \"%s\"\n" startinstring 4 startincomment 5 startafterquote 7 startinbcomment char-to-string "*/" "/*" "//" "\\" display message call-process-region "sh" t "-c" cppcommand " 2>" "done" buffer-size "\nPreprocessor produced no output\n" search-forward re-search-forward "^# [0-9]+ \"" "\"" beg "Preprocessor terminated with status %s\n" insert-file-contents "\n" delete-file] 12 "\
Run a preprocessor on region and return the output as a string.
Expand the region between START and END in the current buffer using
the shell command CPPCOMMAND (e.g. \"/lib/cpp -C -DDEBUG\").
Be sure to use a -C (don't strip comments) or equivalent option.
Optional arg DISPLAY non-nil means show messages in the echo area."])
