Skip to content

Commit

Permalink
Remove impossible cond clause.
Browse files Browse the repository at this point in the history
Merge from Emacs 5a32e5ce48f01180603841194881562ee70fa0db

* lisp/progmodes/verilog-mode.el (verilog-set-auto-endcomments):
Remove can't-happen clause.
  • Loading branch information
mattiase authored and wsnyder committed Oct 14, 2023
1 parent 0823759 commit 9395f12
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions verilog-mode.el
Original file line number Diff line number Diff line change
Expand Up @@ -5375,10 +5375,7 @@ primitive or interface named NAME."
(goto-char (match-end 0))
(setq there (point))
(setq err nil)
(setq str (concat " // " cntx (verilog-get-expr))))

(;-- otherwise...
(setq str " // auto-endcomment confused "))))
(setq str (concat " // " cntx (verilog-get-expr))))))

((and
(verilog-in-case-region-p) ;-- handle case item differently
Expand Down

0 comments on commit 9395f12

Please sign in to comment.