summaryrefslogtreecommitdiff
path: root/paredit.el
diff options
context:
space:
mode:
authorTaylor R Campbell <campbell@mumble.net>2008-09-28 13:52:22 +0000
committerTaylor R Campbell <campbell@mumble.net>2008-09-28 13:52:22 +0000
commit17852a0d897493bb493a67b3f36350ebb96e7d97 (patch)
treeb19a97355d9b6bcbb261d62b2cffba2cd0c7a0fe /paredit.el
parentff2cbab8971a075bdcd87af0fa543ef04d361451 (diff)
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
Diffstat (limited to 'paredit.el')
-rw-r--r--paredit.el5
1 files changed, 4 insertions, 1 deletions
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)