diff options
| author | Paul Eggert | 2013-01-20 09:45:53 -0800 |
|---|---|---|
| committer | Paul Eggert | 2013-01-20 09:45:53 -0800 |
| commit | ea6e730c560065ff8436d93087af47f093ee5e11 (patch) | |
| tree | 8ab89188022e904bb6a37a76ac17882024b1e464 | |
| parent | a576cc76c8267928c601da79f370f98fa1834e8e (diff) | |
| download | emacs-ea6e730c560065ff8436d93087af47f093ee5e11.tar.gz emacs-ea6e730c560065ff8436d93087af47f093ee5e11.zip | |
* src/doprnt.c: Fix comment.
| -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/>. */ | |||
| 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 |