Mercurial > emacs
comparison mac/INSTALL @ 38887:12fcb93284db
2001-08-21 Andrew Choi <akochoi@cse.cuhk.edu.hk>
* INSTALL: Add to the note on using -opt speed in MPW the function
macterm.c (x_draw_hollow_cursor).
author | Andrew Choi <akochoi@shaw.ca> |
---|---|
date | Tue, 21 Aug 2001 10:15:45 +0000 |
parents | c04e66e2c50c |
children | fa72416139fb |
comparison
equal
deleted
inserted
replaced
38886:f035ca54b24a | 38887:12fcb93284db |
---|---|
91 Mac. However, it can be built on another platform and transferred to | 91 Mac. However, it can be built on another platform and transferred to |
92 the Mac. | 92 the Mac. |
93 | 93 |
94 When Emacs is built with "-opt speed" enabled in makefile.MPW, | 94 When Emacs is built with "-opt speed" enabled in makefile.MPW, |
95 optimization causes the functions reset_buffer_local_variables in | 95 optimization causes the functions reset_buffer_local_variables in |
96 buffer.c and syms_of_lread in lread.c to crash. Avoid this by | 96 buffer.c, syms_of_lread in lread.c, and x_draw_hollow_cursor in |
97 enclosing them in the following pragmas. | 97 macterm.c to crash. Avoid this by enclosing them in the following |
98 pragmas. | |
98 | 99 |
99 #pragma options opt off | 100 #pragma options opt off |
100 | 101 |
101 <function definition...> | 102 <function definition...> |
102 | 103 |