summaryrefslogtreecommitdiff
path: root/src/cm.h
diff options
context:
space:
mode:
authorJim Blandy <jimb@redhat.com>1992-07-14 23:23:55 +0000
committerJim Blandy <jimb@redhat.com>1992-07-14 23:23:55 +0000
commite6dd9901bb92e21908bb8c3abf8cdfdcc54a6dd7 (patch)
tree9d9de70eb9bccb6f9dcb4ac337d1e0cedd8a80ee /src/cm.h
parent22a89ee866d6fd7fe735e28d36d6e5739e6eb434 (diff)
downloademacs-e6dd9901bb92e21908bb8c3abf8cdfdcc54a6dd7.tar.gz
entered into RCS
Diffstat (limited to 'src/cm.h')
-rw-r--r--src/cm.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/cm.h b/src/cm.h
index eef86b93be4..112bbfd020f 100644
--- a/src/cm.h
+++ b/src/cm.h
@@ -125,8 +125,8 @@ extern short ospeed; /* Output speed (from sg_ospeed) */
#define AutoWrap Wcm.cm_autowrap
#define MagicWrap Wcm.cm_magicwrap
#define UseTabs Wcm.cm_usetabs
-#define ScreenRows Wcm.cm_rows
-#define ScreenCols Wcm.cm_cols
+#define FrameRows Wcm.cm_rows
+#define FrameCols Wcm.cm_cols
#define UpCost Wcm.cc_up
#define DownCost Wcm.cc_down
@@ -149,7 +149,7 @@ extern short ospeed; /* Output speed (from sg_ospeed) */
#define cmat(row,col) (curY = (row), curX = (col))
#define cmplus(n) \
{ \
- if ((curX += (n)) >= ScreenCols && !MagicWrap) \
+ if ((curX += (n)) >= FrameCols && !MagicWrap) \
{ \
if (Wcm.cm_losewrap) losecursor (); \
else if (AutoWrap) curX = 0, curY++; \