Warning: this is an htmlized version!
The original is here, and
the conversion rules are here.
;; -*- lexical-binding: nil; -*-
;; This file:
;;   http://anggtwu.net/LUA/Gdb1.el.html
;;   http://anggtwu.net/LUA/Gdb1.el
;;          (find-angg "LUA/Gdb1.el")
;; Author: Eduardo Ochs <eduardoochs@gmail.com>
;;
;; (find-gccnode "Overall Options" "-E" "Stop after the preprocessing stage")

(defun find-preproc (&rest rest)
  (with-environment-variables
      (("LUA_INCLUDE_DIR" "/usr/include/lua5.3")
       ("STEM" "Gdb1"))
    (apply 'find-sh "gcc -E -DMAIN -DPREPROC -I${LUA_INCLUDE_DIR} ${STEM}.c" rest)))



;; Local Variables:
;; coding:  utf-8-unix
;; End: