Function: woman1-hc

woman1-hc is a byte-compiled function defined in woman.el.gz.

Signature

(woman1-hc)

Documentation

.hc c -- Set hyphenation character to c, i.e. delete it!

Source Code

;; Defined in /usr/src/emacs/lisp/woman.el.gz
(defun woman1-hc ()
  ".hc c -- Set hyphenation character to c, i.e. delete it!"
  (let ((c (char-to-string (following-char))))
    ;; (WoMan-log
     ;; "Hyphenation character %s deleted -- hyphenation not supported!" c)
    (woman-delete-whole-line)
    (setq c (concat "\\(" c "\\)\\|^[.'][ \t]*hc"))
    (save-excursion
      (while (and (re-search-forward c nil t)
		  (match-beginning 1))
	(delete-char -1)))))