Function: woman-get-numeric-arg

woman-get-numeric-arg is a byte-compiled function defined in woman.el.gz.

Signature

(woman-get-numeric-arg)

Documentation

Get the value of a numeric argument at or after point.

The argument can include the width function and scale indicators. Assumes 10 characters per inch. Does not move point.

Source Code

;; Defined in /usr/src/emacs/lisp/woman.el.gz
;;; Numeric (and "non-text") request arguments:

(defsubst woman-get-numeric-arg ()
  "Get the value of a numeric argument at or after point.
The argument can include the width function and scale indicators.
Assumes 10 characters per inch.  Does not move point."
  (woman2-process-escapes-to-eol 'numeric)
  (save-excursion (woman-parse-numeric-arg)))