diff options
| author | Francesco Potortì | 2002-12-29 19:13:55 +0000 |
|---|---|---|
| committer | Francesco Potortì | 2002-12-29 19:13:55 +0000 |
| commit | 558ee9005ad8281af0de60e4beb8e963acf41dfc (patch) | |
| tree | adad6ed9d1bb3ddebf79b79dc070f1e6c77f5995 /src/data.c | |
| parent | fa634a5ec63316e4cef0e4e74646e934fbde98ed (diff) | |
| download | emacs-558ee9005ad8281af0de60e4beb8e963acf41dfc.tar.gz emacs-558ee9005ad8281af0de60e4beb8e963acf41dfc.zip | |
(Fstring_to_number, Fminus): Better English in doc strings.
Diffstat (limited to 'src/data.c')
| -rw-r--r-- | src/data.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/data.c b/src/data.c index 5ccc3194b29..f3157b33364 100644 --- a/src/data.c +++ b/src/data.c | |||
| @@ -2318,7 +2318,7 @@ digit_to_number (character, base) | |||
| 2318 | } | 2318 | } |
| 2319 | 2319 | ||
| 2320 | DEFUN ("string-to-number", Fstring_to_number, Sstring_to_number, 1, 2, 0, | 2320 | DEFUN ("string-to-number", Fstring_to_number, Sstring_to_number, 1, 2, 0, |
| 2321 | doc: /* Return a number obtained by parsing STRING as a decimal number. | 2321 | doc: /* Parse STRING as a decimal number and return the number. |
| 2322 | This parses both integers and floating point numbers. | 2322 | This parses both integers and floating point numbers. |
| 2323 | It ignores leading spaces and tabs. | 2323 | It ignores leading spaces and tabs. |
| 2324 | 2324 | ||
| @@ -2561,7 +2561,7 @@ usage: (+ &rest NUMBERS-OR-MARKERS) */) | |||
| 2561 | } | 2561 | } |
| 2562 | 2562 | ||
| 2563 | DEFUN ("-", Fminus, Sminus, 0, MANY, 0, | 2563 | DEFUN ("-", Fminus, Sminus, 0, MANY, 0, |
| 2564 | doc: /* Negate number or subtract numbers or markers, returns the result. | 2564 | doc: /* Negate number or subtract numbers or markers and return the result. |
| 2565 | With one arg, negates it. With more than one arg, | 2565 | With one arg, negates it. With more than one arg, |
| 2566 | subtracts all but the first from the first. | 2566 | subtracts all but the first from the first. |
| 2567 | usage: (- &optional NUMBER-OR-MARKER &rest MORE-NUMBERS-OR-MARKERS) */) | 2567 | usage: (- &optional NUMBER-OR-MARKER &rest MORE-NUMBERS-OR-MARKERS) */) |