Function: verilog-string-remove-spaces
verilog-string-remove-spaces is a byte-compiled function defined in
verilog-mode.el.gz.
Signature
(verilog-string-remove-spaces STRING)
Documentation
Remove spaces surrounding STRING.
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/verilog-mode.el.gz
(defsubst verilog-string-remove-spaces (string)
"Remove spaces surrounding STRING."
(save-match-data
(setq string (verilog-string-replace-matches "^\\s-+" "" nil nil string))
(setq string (verilog-string-replace-matches "\\s-+$" "" nil nil string))
string))