# HG changeset patch # User Thien-Thi Nguyen # Date 1174659098 0 # Node ID fe088e460c01fd4b4807dec762bc20607172ca2a # Parent 20327b8e872568853a90104c9361a09b437c6651 (m4-m4-buffer, m4-m4-region): Fix omission bug: Use m4-program-options to construct shell command. diff -r 20327b8e8725 -r fe088e460c01 lisp/progmodes/m4-mode.el --- a/lisp/progmodes/m4-mode.el Fri Mar 23 09:52:42 2007 +0000 +++ b/lisp/progmodes/m4-mode.el Fri Mar 23 14:11:38 2007 +0000 @@ -118,14 +118,19 @@ (defun m4-m4-buffer () "Send contents of the current buffer to m4." (interactive) - (shell-command-on-region (point-min) (point-max) m4-program "*m4-output*" - nil) + (shell-command-on-region + (point-min) (point-max) + (mapconcat 'identity (cons m4-program m4-program-options) "\s") + "*m4-output*" nil) (switch-to-buffer-other-window "*m4-output*")) (defun m4-m4-region () "Send contents of the current region to m4." (interactive) - (shell-command-on-region (point) (mark) m4-program "*m4-output*" nil) + (shell-command-on-region + (point) (mark) + (mapconcat 'identity (cons m4-program m4-program-options) "\s") + "*m4-output*" nil) (switch-to-buffer-other-window "*m4-output*")) ;;;###autoload