Variable: hbut:fill-prefix-regexps

hbut:fill-prefix-regexps is a variable defined in hbut.el.

Value

("^[    ]*\\([:|<>]+ *\\)+.*
\n?" "^[    ]*[^'`\"<    ]*> *.*
\n?" "^[    ]*\\(;+[        ]*\\)+.*
?\n?" "^[     ]*\\(#+[        ]*\\)+.*
?\n?" "^[     ]*//[/  ]+.*
?\n?" "[/(]\\*+[^*/]*\\*+[/)][    
\n]+" "^[     ]*--[   ]+.*
?\n?" "^[Cc][     ]+.*
?\n?" "^[         ]*\\(%+[        ]*\\)+.*
?\n?")

Documentation

List of regexps of fill prefixes to remove from the middle of buttons.

Source Code

;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hbut.el
;;; Regexps derived in part from "filladapt.el" by Kyle E. Jones under
;;; the GPL.
(defvar   hbut:fill-prefix-regexps
  '(
    ;; Included text in news or mail messages
    "^[ \t]*\\([:|<>]+ *\\)+.*\r\n?"
    ;; Included text generated by SUPERCITE.  We can't hope to match all
    ;; the possible variations.
    "^[ \t]*[^'`\"< \t]*> *.*\r\n?"
    ;; Lisp comments
    "^[ \t]*\\(;+[ \t]*\\)+.*\r?\n?"
    ;; UNIX shell comments
    "^[ \t]*\\(#+[ \t]*\\)+.*\r?\n?"
    ;; C++ comments
    "^[ \t]*//[/ \t]+.*\r?\n?"
    ;; C or Pascal comments, one open and close per line, so match close
    ;; then open; no nested comments
    "[/\(]\\*+[^*/]*\\*+[/\)][ \t\r\n]+"
    ;; SQL, Eiffel or Sather comments
    "^[ \t]*--[ \t]+.*\r?\n?"
    ;; Fortran comments
    "^[Cc][ \t]+.*\r?\n?"
    ;; Postscript comments
    "^[ \t]*\\(%+[ \t]*\\)+.*\r?\n?")
  "List of regexps of fill prefixes to remove from the middle of buttons.")