1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-04-24 23:31:33 -07:00

(frame_name_fnn_p): Fix previous change.

This commit is contained in:
Eli Zaretskii 1999-09-21 14:49:28 +00:00
parent 3f708f4c75
commit 48970f2f02

View file

@ -1880,6 +1880,8 @@ frame_name_fnn_p (str, len)
{
char *end_ptr;
strtol (str + 1, &end_ptr, 10);
if (end_ptr == str + len)
return 1;
}