diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/floatfns.c | 4 | ||||
| -rw-r--r-- | src/xfaces.c | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/src/floatfns.c b/src/floatfns.c index c1bd25877e3..f514fcbea8c 100644 --- a/src/floatfns.c +++ b/src/floatfns.c | |||
| @@ -185,8 +185,8 @@ If X is zero, both parts (SGNFCAND and EXP) are zero. */) | |||
| 185 | } | 185 | } |
| 186 | 186 | ||
| 187 | DEFUN ("ldexp", Fldexp, Sldexp, 2, 2, 0, | 187 | DEFUN ("ldexp", Fldexp, Sldexp, 2, 2, 0, |
| 188 | doc: /* Return X * 2**EXP, as a floating point number. | 188 | doc: /* Return SGNFCAND * 2**EXPONENT, as a floating point number. |
| 189 | EXP must be an integer. */) | 189 | EXPONENT must be an integer. */) |
| 190 | (Lisp_Object sgnfcand, Lisp_Object exponent) | 190 | (Lisp_Object sgnfcand, Lisp_Object exponent) |
| 191 | { | 191 | { |
| 192 | CHECK_NUMBER (exponent); | 192 | CHECK_NUMBER (exponent); |
diff --git a/src/xfaces.c b/src/xfaces.c index 88f5f3415b0..5077cb2d944 100644 --- a/src/xfaces.c +++ b/src/xfaces.c | |||
| @@ -6503,8 +6503,8 @@ REPLACEMENT is a face specification, i.e. one of the following: | |||
| 6503 | (3) a list in which each element has the form of (1) or (2). | 6503 | (3) a list in which each element has the form of (1) or (2). |
| 6504 | 6504 | ||
| 6505 | List values for REPLACEMENT are merged to form the final face | 6505 | List values for REPLACEMENT are merged to form the final face |
| 6506 | specification, with earlier entries taking precedence, in the same as | 6506 | specification, with earlier entries taking precedence, in the same way |
| 6507 | as in the `face' text property. | 6507 | as with the `face' text property. |
| 6508 | 6508 | ||
| 6509 | Face-name remapping cycles are suppressed; recursive references use | 6509 | Face-name remapping cycles are suppressed; recursive references use |
| 6510 | the underlying face instead of the remapped face. So a remapping of | 6510 | the underlying face instead of the remapped face. So a remapping of |