emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[nongnu] elpa/php-mode 81717a56b7: Fix style


From: ELPA Syncer
Subject: [nongnu] elpa/php-mode 81717a56b7: Fix style
Date: Mon, 6 Jun 2022 14:58:48 -0400 (EDT)

branch: elpa/php-mode
commit 81717a56b74d7ab76a1126eb4f45167d5eb61c32
Author: USAMI Kenta <tadsan@zonu.me>
Commit: USAMI Kenta <tadsan@zonu.me>

    Fix style
---
 lisp/php-mode.el | 21 +++++++++------------
 1 file changed, 9 insertions(+), 12 deletions(-)

diff --git a/lisp/php-mode.el b/lisp/php-mode.el
index 7bff850492..f221770a83 100644
--- a/lisp/php-mode.el
+++ b/lisp/php-mode.el
@@ -290,13 +290,11 @@ In that case set to `NIL'."
 (defun php-mode-version ()
   "Display string describing the version of PHP Mode."
   (interactive)
-  (let ((fmt
-         (eval-when-compile
-           (let ((id "$Id$"))
-             (concat "PHP Mode %s"
-                     (if (string= id (concat [?$ ?I ?d ?$]))
-                         ""
-                       (concat " " id)))))))
+  (let ((fmt (eval-when-compile (let ((id "$Id$"))
+                                  (concat "PHP Mode %s"
+                                          (if (string= id (concat [?$ ?I ?d 
?$]))
+                                              ""
+                                            (concat " " id)))))))
     (funcall
      (if (called-interactively-p 'interactive) #'message #'format)
      fmt php-mode-version-number)))
@@ -774,9 +772,8 @@ See `php-beginning-of-defun'."
             (save-match-data
               (not (or (re-search-forward html-tag-re (line-end-position) t)
                        (re-search-backward html-tag-re 
(line-beginning-position) t)))))
-        (progn
-          (goto-char here)
-          t)
+        (prog1 t
+          (goto-char here))
       (goto-char here)
       (setq php-warned-bad-indent t)
       (let* ((known-multi-libs '(("mumamo" mumamo (lambda () (nxhtml-mumamo)))
@@ -837,9 +834,9 @@ example `html-mode'.  Known such libraries are:\n\t"
         nil))))
 
 (defun php-cautious-indent-region (start end &optional quiet)
-  "Carefully indent region `START' `END' in contexts other than HTML templates.
+  "Carefully indent region START to END in contexts other than HTML templates.
 
-If the optional argument `QUIET' is non-nil then no syntactic errors are
+If the optional argument QUIET is non-nil then no syntactic errors are
 reported, even if `c-report-syntactic-errors' is non-nil."
   (if (or (not php-mode-warn-if-mumamo-off)
           (not (php-in-poly-php-html-mode))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]