We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a1781e2 commit 6d197a9Copy full SHA for 6d197a9
lisp/php-ide.el
@@ -178,6 +178,7 @@
178
:type 'string
179
:safe #'stringp)
180
181
+;;;###autoload
182
(defcustom php-ide-mode-functions nil
183
"Hook functions called when before activating or deactivating PHP-IDE.
184
Notice that two arguments (FEATURE ACTIVATE) are given.
@@ -188,9 +189,7 @@ ACTIVATE: T is given when activeting, NIL when deactivating PHP-IDE."
188
189
:group 'php-ide
190
:type '(repeat function)
191
:safe (lambda (functions)
- (and (listp functions)
192
- (cl-loop for function in functions
193
- always (functionp function)))))
+ (and (listp functions) (cl-every #'functionp functions))))
194
195
;;;###autoload
196
(define-minor-mode php-ide-mode
0 commit comments