]> git.eshelyaron.com Git - emacs.git/commitdiff
semantic: Allow empty type relation separation character
authorEric Ludlam <zappo@gnu.org>
Wed, 26 Nov 2014 15:38:37 +0000 (10:38 -0500)
committerDavid Engster <deng@randomsample.de>
Mon, 23 Jan 2017 20:53:24 +0000 (21:53 +0100)
* lisp/cedet/semantic/ctxt.el (semantic-ctxt-current-symbol-default):
  Allow the type relation separator to be empty for languages that
  don't have symbol sequences, such as grammars and Lisp.

lisp/cedet/semantic/ctxt.el

index 78e5ec508f6f6d9b8a933187d359d5593e503af1..4ebc68f27e74e9ac2a9602e2f5aeb2abf8823244 100644 (file)
@@ -454,7 +454,8 @@ This will include a list of type/field names when applicable.
 Depends on `semantic-type-relation-separator-character'."
   (save-excursion
     (if point (goto-char point))
-    (let* ((fieldsep1 (mapconcat (lambda (a) (regexp-quote a))
+    (let* ((dosequence (not (null semantic-type-relation-separator-character)))
+          (fieldsep1 (mapconcat (lambda (a) (regexp-quote a))
                                 semantic-type-relation-separator-character
                                 "\\|"))
           ;; NOTE: The [ \n] expression below should used \\s-, but that
@@ -491,9 +492,11 @@ Depends on `semantic-type-relation-separator-character'."
 
          ;; Now that we have gotten started, let's do the rest.
          (condition-case nil
-             (while (save-excursion
-                      (forward-char -1)
-                      (looking-at "\\w\\|\\s_"))
+             (while (and
+                     (or dosequence (not symlist))
+                     (save-excursion
+                       (forward-char -1)
+                       (looking-at "\\w\\|\\s_")))
                ;; We have a symbol.. Do symbol things
                (forward-sexp -1)
                (setq symlist (cons (buffer-substring-no-properties (point) end)