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 <user42_kevin@yahoo.com.au> for this fix.
This commit is contained in:
Jason L. Shiffer 2015-12-11 09:31:08 -05:00
parent e38546fe7e
commit 53601bd733

View File

@ -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