From 17852a0d897493bb493a67b3f36350ebb96e7d97 Mon Sep 17 00:00:00 2001 From: Taylor R Campbell Date: Sun, 28 Sep 2008 13:52:22 +0000 Subject: Call `comment-forward' as a symbol with `funcall'. This suppresses the compiler's warning about a function not known to be defined. darcs-hash:20080928135222-00fcc-5f4d902e13be97833fd28c5e611147c577ec1c41 --- paredit.el | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'paredit.el') diff --git a/paredit.el b/paredit.el index 4e10d52..724f4df 100644 --- a/paredit.el +++ b/paredit.el @@ -1027,7 +1027,10 @@ At the top level, where indentation is calculated to be at column 0, (lambda (beginning end &optional argument) (interactive "*r\nP") (funcall (if (save-excursion (goto-char beginning) - (comment-forward (point-max)) + ;; This is not defined until `newcomment' + ;; is loaded. Using `funcall' with a + ;; symbol shuts up the compiler. + (funcall 'comment-forward (point-max)) (<= end (point))) 'uncomment-region 'comment-region) -- cgit v1.2.1