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

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

[elpa] externals/phps-mode c6e4844753 122/135: Some byte-compilation fix


From: Christian Johansson
Subject: [elpa] externals/phps-mode c6e4844753 122/135: Some byte-compilation fixes
Date: Sun, 29 Jan 2023 03:11:11 -0500 (EST)

branch: externals/phps-mode
commit c6e48447539712a2bfc694a93f946abc375601f5
Author: Christian Johansson <christian@cvj.se>
Commit: Christian Johansson <christian@cvj.se>

    Some byte-compilation fixes
---
 phps-mode-ast.el          | 2 +-
 phps-mode-lex-analyzer.el | 5 +++--
 2 files changed, 4 insertions(+), 3 deletions(-)

diff --git a/phps-mode-ast.el b/phps-mode-ast.el
index 3d5d4cc65c..841303509d 100644
--- a/phps-mode-ast.el
+++ b/phps-mode-ast.el
@@ -181,7 +181,7 @@
              (listp (cdr b)))
             (< (cdr (car (car (cdr a)))) (cdr (car (car (cdr b))))))
            ((listp (cdr a))
-            (< (cdr (car (car (cdr a))) (cdr b))))
+            (< (cdr (car (car (cdr a)))) (cdr b)))
            ((listp (cdr b))
             (< (cdr a) (cdr (car (car (cdr b))))))
            (t
diff --git a/phps-mode-lex-analyzer.el b/phps-mode-lex-analyzer.el
index 46b07cf08e..fcb8c689c9 100644
--- a/phps-mode-lex-analyzer.el
+++ b/phps-mode-lex-analyzer.el
@@ -1154,7 +1154,8 @@
              (parse-trail)
              (ast-tree)
              (bookkeeping)
-             (imenu))
+             (imenu)
+             (symbol-table))
 
         ;; Create temporary buffer and run lexer in it
         (when (get-buffer buffer)
@@ -1240,7 +1241,7 @@
             (setq ast-tree phps-mode-ast--tree)
             (setq bookkeeping phps-mode-parser-sdt-bookkeeping)
             (setq imenu phps-mode-parser-sdt-symbol-imenu)
-            (setq symbol-table phps-mode phps-mode-parser-sdt-symbol-table)
+            (setq symbol-table phps-mode-parser-sdt-symbol-table)
 
             (kill-buffer)))
 



reply via email to

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