diff options
author | Paul Eggert <eggert@cs.ucla.edu> | 2013-01-20 09:45:53 -0800 |
---|---|---|
committer | Paul Eggert <eggert@cs.ucla.edu> | 2013-01-20 09:45:53 -0800 |
commit | ea6e730c560065ff8436d93087af47f093ee5e11 (patch) | |
tree | 8ab89188022e904bb6a37a76ac17882024b1e464 /src/doprnt.c | |
parent | a576cc76c8267928c601da79f370f98fa1834e8e (diff) | |
download | emacs-ea6e730c560065ff8436d93087af47f093ee5e11.tar.gz |
* src/doprnt.c: Fix comment.
Diffstat (limited to 'src/doprnt.c')
-rw-r--r-- | src/doprnt.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/doprnt.c b/src/doprnt.c index b8e1b547268..471e35c7b43 100644 --- a/src/doprnt.c +++ b/src/doprnt.c @@ -38,7 +38,7 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */ could include embedded null characters. . It signals an error if the length of the formatted string is about to - overflow MOST_POSITIVE_FIXNUM, to avoid producing strings longer than what + overflow ptrdiff_t or size_t, to avoid producing strings longer than what Emacs can handle. OTOH, this function supports only a small subset of the standard C formatted |