summaryrefslogtreecommitdiff
path: root/src/sunfns.c
diff options
context:
space:
mode:
authorJim Blandy <jimb@redhat.com>1992-07-13 20:56:17 +0000
committerJim Blandy <jimb@redhat.com>1992-07-13 20:56:17 +0000
commit39f1f913b56985780d808691a28704b13f2d73ec (patch)
tree810b32e310263721e980b1c5796c0a6c2a179bd8 /src/sunfns.c
parent717ac510b968e5e1114cd8b9a72c20574ef60042 (diff)
downloademacs-39f1f913b56985780d808691a28704b13f2d73ec.tar.gz
entered into RCS
Diffstat (limited to 'src/sunfns.c')
-rw-r--r--src/sunfns.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/sunfns.c b/src/sunfns.c
index 7c637e670f0..d870c7e4090 100644
--- a/src/sunfns.c
+++ b/src/sunfns.c
@@ -46,14 +46,14 @@ who first discovered the Menu_Base_Kludge.
#include "buffer.h"
#include "termhooks.h"
-/* conversion to/from character & screen coordinates */
+/* conversion to/from character & frame coordinates */
/* From Gosling Emacs SunWindow driver by Chris Torek */
-/* Chars to screen coords. Note that we speak in zero origin. */
+/* Chars to frame coords. Note that we speak in zero origin. */
#define CtoSX(cx) ((cx) * Sun_Font_Xsize)
#define CtoSY(cy) ((cy) * Sun_Font_Ysize)
-/* Screen coords to chars */
+/* Frame coords to chars */
#define StoCX(sx) ((sx) / Sun_Font_Xsize)
#define StoCY(sy) ((sy) / Sun_Font_Ysize)