]> git.eshelyaron.com Git - emacs.git/commitdiff
* lisp/progmodes/cc-guess.el: Remove unused var
authorStefan Monnier <monnier@iro.umontreal.ca>
Wed, 5 Jul 2017 01:55:44 +0000 (21:55 -0400)
committerStefan Monnier <monnier@iro.umontreal.ca>
Wed, 5 Jul 2017 01:55:44 +0000 (21:55 -0400)
(c-guess-view-reorder-offsets-alist-in-style): Remove redundantly bound
and computed variable `guessed-syntactic-symbols'.

lisp/progmodes/cc-guess.el

index 153b3a31e56cf8c43a913342c9f7f49ce2481f2e..c8cd6fbe40ba0b9951c16dea562656aa87b8f6fc 100644 (file)
@@ -494,8 +494,7 @@ is called with one argument, the guessed style."
   ;; If an entry in `c-offsets-alist' holds a guessed value, move it to
   ;; front in the field. In addition alphabetical sort by entry name is done.
   (setq style (copy-tree style))
-  (let ((offsets-alist-cell (assq 'c-offsets-alist style))
-       (guessed-syntactic-symbols (c-guess-guessed-syntactic-symbols)))
+  (let ((offsets-alist-cell (assq 'c-offsets-alist style)))
     (setcdr offsets-alist-cell
            (sort (cdr offsets-alist-cell)
                  (lambda (a b)