diff options
author | Jim Blandy <jimb@redhat.com> | 1992-07-14 23:23:55 +0000 |
---|---|---|
committer | Jim Blandy <jimb@redhat.com> | 1992-07-14 23:23:55 +0000 |
commit | e6dd9901bb92e21908bb8c3abf8cdfdcc54a6dd7 (patch) | |
tree | 9d9de70eb9bccb6f9dcb4ac337d1e0cedd8a80ee /src/cm.h | |
parent | 22a89ee866d6fd7fe735e28d36d6e5739e6eb434 (diff) | |
download | emacs-e6dd9901bb92e21908bb8c3abf8cdfdcc54a6dd7.tar.gz |
entered into RCS
Diffstat (limited to 'src/cm.h')
-rw-r--r-- | src/cm.h | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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++; \ |