diff options
author | Jim Blandy <jimb@redhat.com> | 1992-07-13 20:56:17 +0000 |
---|---|---|
committer | Jim Blandy <jimb@redhat.com> | 1992-07-13 20:56:17 +0000 |
commit | 0137dbf747e9fcbfe6f37c7fb0bbb29012a27179 (patch) | |
tree | 658380474eae580fc6b03b724e6498d9cf0b783f /src/sunfns.c | |
parent | ff11dfa15b3b56559bac0d5c6b0a26a80d2d5f6d (diff) | |
download | emacs-0137dbf747e9fcbfe6f37c7fb0bbb29012a27179.tar.gz emacs-0137dbf747e9fcbfe6f37c7fb0bbb29012a27179.tar.bz2 emacs-0137dbf747e9fcbfe6f37c7fb0bbb29012a27179.zip |
entered into RCS
Diffstat (limited to 'src/sunfns.c')
-rw-r--r-- | src/sunfns.c | 6 |
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) |