diff options
author | Paul Eggert <eggert@cs.ucla.edu> | 2018-09-10 08:59:39 -0700 |
---|---|---|
committer | Paul Eggert <eggert@cs.ucla.edu> | 2018-09-10 09:04:25 -0700 |
commit | 10a45096988f6f19e36e2e7865b6eb35c0929b6d (patch) | |
tree | 48c29051f52ae37d4c943f4bc1400c57aa15b91b /src/editfns.c | |
parent | fe859a07870d5204adfd5c9a7f83bf69658d37c8 (diff) | |
download | emacs-10a45096988f6f19e36e2e7865b6eb35c0929b6d.tar.gz emacs-10a45096988f6f19e36e2e7865b6eb35c0929b6d.tar.bz2 emacs-10a45096988f6f19e36e2e7865b6eb35c0929b6d.zip |
Fix misleading name ‘double_to_bignum’
* src/bignum.c (double_to_integer): Rename from double_to_bignum,
since the result is not necessarily a bignum. All uses changed.
Diffstat (limited to 'src/editfns.c')
-rw-r--r-- | src/editfns.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/editfns.c b/src/editfns.c index f19c3f1dca9..8c7491beedc 100644 --- a/src/editfns.c +++ b/src/editfns.c @@ -4657,7 +4657,7 @@ styled_format (ptrdiff_t nargs, Lisp_Object *args, bool message) /* Characters to be inserted after spaces and before leading zeros. This can occur with bignums, since - string_to_bignum does only leading '-'. */ + bignum_to_string does only leading '-'. */ char prefix[sizeof "-0x" - 1]; int prefixlen = 0; |