aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/doprnt.c2
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/>. */
38 could include embedded null characters. 38 could include embedded null characters.
39 39
40 . It signals an error if the length of the formatted string is about to 40 . It signals an error if the length of the formatted string is about to
41 overflow MOST_POSITIVE_FIXNUM, to avoid producing strings longer than what 41 overflow ptrdiff_t or size_t, to avoid producing strings longer than what
42 Emacs can handle. 42 Emacs can handle.
43 43
44 OTOH, this function supports only a small subset of the standard C formatted 44 OTOH, this function supports only a small subset of the standard C formatted