aboutsummaryrefslogtreecommitdiffstats
path: root/mac
diff options
context:
space:
mode:
authorAndrew Choi2001-08-21 10:15:45 +0000
committerAndrew Choi2001-08-21 10:15:45 +0000
commit67e2eec4e9563e7fbc2d6d998162902877f7c76f (patch)
tree1f3f86571af5e998aa00aae3885df886e1637dc3 /mac
parentf9e25d0c969f4d9fda329bab70c6d0a30dafb15f (diff)
downloademacs-67e2eec4e9563e7fbc2d6d998162902877f7c76f.tar.gz
emacs-67e2eec4e9563e7fbc2d6d998162902877f7c76f.zip
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).
Diffstat (limited to 'mac')
-rw-r--r--mac/ChangeLog3
-rw-r--r--mac/INSTALL5
2 files changed, 6 insertions, 2 deletions
diff --git a/mac/ChangeLog b/mac/ChangeLog
index e927b53bc91..3f3408b27e8 100644
--- a/mac/ChangeLog
+++ b/mac/ChangeLog
@@ -1,5 +1,8 @@
12001-08-21 Andrew Choi <akochoi@cse.cuhk.edu.hk> 12001-08-21 Andrew Choi <akochoi@cse.cuhk.edu.hk>
2 2
3 * INSTALL: Add to the note on using -opt speed in MPW the function
4 macterm.c (x_draw_hollow_cursor).
5
3 * src/macterm.c (mac_scroll_area): Call CopyBits with local 6 * src/macterm.c (mac_scroll_area): Call CopyBits with local
4 coordinates and portBits instead of global coordinates and 7 coordinates and portBits instead of global coordinates and
5 screenBits. Set fore color and back color to black and white, 8 screenBits. Set fore color and back color to black and white,
diff --git a/mac/INSTALL b/mac/INSTALL
index dd620995077..1846a550cfc 100644
--- a/mac/INSTALL
+++ b/mac/INSTALL
@@ -93,8 +93,9 @@ the Mac.
93 93
94When Emacs is built with "-opt speed" enabled in makefile.MPW, 94When Emacs is built with "-opt speed" enabled in makefile.MPW,
95optimization causes the functions reset_buffer_local_variables in 95optimization causes the functions reset_buffer_local_variables in
96buffer.c and syms_of_lread in lread.c to crash. Avoid this by 96buffer.c, syms_of_lread in lread.c, and x_draw_hollow_cursor in
97enclosing them in the following pragmas. 97macterm.c to crash. Avoid this by enclosing them in the following
98pragmas.
98 99
99 #pragma options opt off 100 #pragma options opt off
100 101