Skip to content

Commit a4768c7

Browse files
committed
Fixed namespace of custom variable.
1 parent 5ac9531 commit a4768c7

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

drupal/flymake-phpcs.el

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
;; Only available when `flymake' is the fork from
3636
;; https://github.com/illusori/emacs-flymake.
3737
(when (boundp 'flymake-run-in-place)
38-
(defcustom drupal/flymake-run-in-place t
38+
(defcustom drupal/flymake-phpcs-run-in-place t
3939
"If nil, flymake will run on copies in `temporary-file-directory' rather
4040
than the same directory as the original file.
4141
@@ -65,9 +65,9 @@ file (and thus on the remote machine), or in the same place as
6565
(set (make-local-variable 'flymake-phpcs-standard) drupal/phpcs-standard)
6666

6767
;; Set whether flymake runs in place.
68-
(when (and (boundp 'drupal/flymake-run-in-place)
69-
(not (eq drupal/flymake-run-in-place 'default)))
70-
(set (make-local-variable 'flymake-run-in-place) drupal/flymake-run-in-place))
68+
(when (and (boundp 'drupal/flymake-phpcs-run-in-place)
69+
(not (eq drupal/flymake-phpcs-run-in-place 'default)))
70+
(set (make-local-variable 'flymake-run-in-place) drupal/flymake-phpcs-run-in-place))
7171

7272
;; Flymake-phpcs will also highlight trailing whitespace as an
7373
;; error so no need to highlight it twice.

0 commit comments

Comments
 (0)