changeset 776:a1d724d96f6b

entered into RCS
author Jim Blandy <jimb@redhat.com>
date Tue, 14 Jul 1992 23:23:55 +0000
parents 1ca26ccad38e
children c99faf9381bb
files src/cm.h src/termopts.h
diffstat 2 files changed, 4 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- a/src/cm.h	Tue Jul 14 21:51:51 1992 +0000
+++ b/src/cm.h	Tue Jul 14 23:23:55 1992 +0000
@@ -125,8 +125,8 @@
 #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 @@
 #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++;		\
--- a/src/termopts.h	Tue Jul 14 21:51:51 1992 +0000
+++ b/src/termopts.h	Tue Jul 14 23:23:55 1992 +0000
@@ -36,5 +36,5 @@
 /* Terminal has meta key */
 extern int meta_key;
 
-/* Nonzero means truncate lines in all windows less wide than the screen */
+/* Nonzero means truncate lines in all windows less wide than the frame */
 extern int truncate_partial_width_windows;