1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2025-12-26 07:11:34 -08:00

; Adjust overly long docstrings to fit 80 characters

This commit is contained in:
Stefan Kangas 2021-09-24 14:46:56 +02:00
parent f4ea15907a
commit c78e16962e
45 changed files with 138 additions and 87 deletions

View file

@ -4038,9 +4038,12 @@ Some other functions are:
\\[verilog-sk-repeat] Insert a repeat (..) begin .. end block.
\\[verilog-sk-specify] Insert a specify .. endspecify block.
\\[verilog-sk-task] Insert a task .. begin .. end endtask block.
\\[verilog-sk-while] Insert a while (...) begin .. end block, prompting for details.
\\[verilog-sk-casex] Insert a casex (...) item: begin.. end endcase block, prompting for details.
\\[verilog-sk-casez] Insert a casez (...) item: begin.. end endcase block, prompting for details.
\\[verilog-sk-while] Insert a while (...) begin .. end block,
prompting for details.
\\[verilog-sk-casex] Insert a casex (...) item: begin.. end endcase block,
prompting for details.
\\[verilog-sk-casez] Insert a casez (...) item: begin.. end endcase block,
prompting for details.
\\[verilog-sk-if] Insert an if (..) begin .. end block.
\\[verilog-sk-else-if] Insert an else if (..) begin .. end block.
\\[verilog-sk-comment] Insert a comment block.
@ -6580,7 +6583,8 @@ Return >0 for nested struct."
nil))))
(defun verilog-at-constraint-p ()
"If at the { of a constraint or coverpoint definition, return true, moving point to constraint."
"If at the { of a constraint or coverpoint definition, return true.
Also move point to constraint."
(if (save-excursion
(let ((p (point)))
(and
@ -14985,7 +14989,9 @@ but instead, [[Fill in here]] happens!.
(provide 'verilog-mode)
;;TODO: Could `byte-compile-docstring-max-column' be decreased?
;; Local Variables:
;; byte-compile-docstring-max-column: 90
;; checkdoc-permit-comma-termination-flag:t
;; checkdoc-force-docstrings-flag:nil
;; indent-tabs-mode:nil