comparison src/xdisp.c @ 6741:840862375e93

(copy_part_of_rope): Replace non-glyph with 0.
author Karl Heuer <kwzh@gnu.org>
date Fri, 08 Apr 1994 01:27:28 +0000
parents 255869831639
children 7c12310c8b86
comparison
equal deleted inserted replaced
6740:255869831639 6741:840862375e93
1926 } 1926 }
1927 else 1927 else
1928 #endif 1928 #endif
1929 while (n--) 1929 while (n--)
1930 { 1930 {
1931 if (to >= s) *to = XFASTINT (*fp); 1931 if (to >= s) *to = (INTEGERP (*fp) ? XFASTINT (*fp) : 0);
1932 ++to; 1932 ++to;
1933 ++fp; 1933 ++fp;
1934 } 1934 }
1935 return to; 1935 return to;
1936 } 1936 }