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

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

[elpa] master 2ae20d2: * sm-c-mode.el: Fix some problems reported by An


From: Stefan Monnier
Subject: [elpa] master 2ae20d2: * sm-c-mode.el: Fix some problems reported by Andrés Ramírez
Date: Mon, 10 Apr 2017 22:32:55 -0400 (EDT)

branch: master
commit 2ae20d2a570893b25c20b5b2f635cf37a04877b5
Author: Stefan Monnier <address@hidden>
Commit: Stefan Monnier <address@hidden>

    * sm-c-mode.el: Fix some problems reported by Andrés Ramírez
    
    (sm-c-smie-rules): Avoid inf-looping on "case foo: {".
    (sm-c--cpp-syntax-propertize): Treat trailing //...\n in CPP directive
    as being outside the directive.
---
 packages/sm-c-mode/sm-c-mode.el | 17 +++++++++++++++--
 1 file changed, 15 insertions(+), 2 deletions(-)

diff --git a/packages/sm-c-mode/sm-c-mode.el b/packages/sm-c-mode/sm-c-mode.el
index deaf952..0731203 100644
--- a/packages/sm-c-mode/sm-c-mode.el
+++ b/packages/sm-c-mode/sm-c-mode.el
@@ -150,8 +150,20 @@ no difference."
                    (with-syntax-table sm-c--cpp-syntax-table
                      (nth 4 (parse-partial-sexp (1+ (nth 8 ppss)) (point)))))))
       (when found
-        (put-text-property (1- (point)) (point)
-                           'syntax-table (string-to-syntax "> c"))))))
+        (let* ((ppss-in
+                (save-excursion
+                  (parse-partial-sexp (1+ (nth 8 ppss)) (1- (point)))))
+               ;; Put the end before a closing //...\n comment so as to avoid
+               ;; a bug in back_comment.  The problem is that back_comment
+               ;; otherwise will see "// <...> <...> \n" and will consider the
+               ;; CPP pseudo-comments as nested within the //...\n comment.
+               (end (if (and (nth 4 ppss-in)        ;Inside a comment.
+                             (null (nth 7 ppss-in)) ;A style `a' comment.
+                             (memq (char-before (nth 8 ppss-in)) '(?\s ?\t)))
+                        (nth 8 ppss-in)
+                      (point))))
+          (put-text-property (1- end) end
+                             'syntax-table (string-to-syntax "> c")))))))
 
 ;;;; Indenting CPP directives.
 
@@ -661,6 +673,7 @@ if INNER is non-nil, it stops at the innermost one."
                             (equal ")" (car (smie-indent-backward-token))))
                    (up-list -1)
                    `(column . ,(sm-c--smie-virtual)))))
+              ((>= (point) pos) nil)
               (t `(column . ,(smie-indent-virtual))))))))
       ((smie-rule-hanging-p)
        (cond



reply via email to

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