From 53601bd733bf413e452e9130ec101e7fa72105e2 Mon Sep 17 00:00:00 2001 From: "Jason L. Shiffer" Date: Fri, 11 Dec 2015 09:31:08 -0500 Subject: [PATCH] Fixes #19 Problems with boxes.el in xemacs Removes the 6th arg to shell-command-on-region as it is not necessary and does not exist in older versions of xemacs Thanks to Kevin Ryde for this fix. --- doc/boxes.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/boxes.el b/doc/boxes.el index 28744c3..29e2063 100644 --- a/doc/boxes.el +++ b/doc/boxes.el @@ -117,7 +117,7 @@ To remove a box simply prefix a 1 to the callL M-1 M-x boxes-command-on-region w (concat boxes-args " -r ")) (if type (concat boxes-args " -d " type))))) - (shell-command-on-region start end command-string nil 1 nil))) + (shell-command-on-region start end command-string nil 1))) (provide 'boxes) ;;; boxes.el ends here