diff options
| author | Stephen Berman | 2016-06-13 18:08:22 +0200 |
|---|---|---|
| committer | Stephen Berman | 2016-06-13 18:08:22 +0200 |
| commit | 20de6679b0b56b4e37fa7e145a3ed33010f3f6d4 (patch) | |
| tree | 5e76aada3ad2d10b0a3bd27b1554cef565090b63 /src/floatfns.c | |
| parent | a67a4e598d57cd9d6fb6442e747ebabc8da2798a (diff) | |
| download | emacs-20de6679b0b56b4e37fa7e145a3ed33010f3f6d4.tar.gz emacs-20de6679b0b56b4e37fa7e145a3ed33010f3f6d4.zip | |
Doc fixes for grammar and typos (bug#23746)
* doc/emacs/files.texi (Customize Save):
* doc/emacs/frames.texi (Window Dividers):
* doc/emacs/misc.texi (Printing):
* doc/lispref/compile.texi (Compiler Errors):
* doc/lispref/keymaps.texi (Changing Key Bindings):
* doc/lispref/loading.texi (Named Features):
* doc/lispref/markers.texi (Marker Insertion Types):
* doc/lispref/modes.texi (Mode Hooks):
* doc/lispref/text.texi (Undo):
* src/floatfns.c (Fldexp):
* src/xfaces.c (syms_of_xfaces):
Minor doc fixes for grammar and typos (bug#23746).
Diffstat (limited to 'src/floatfns.c')
| -rw-r--r-- | src/floatfns.c | 4 |
1 files changed, 2 insertions, 2 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); |