unofficial mirror of emacs-devel@gnu.org 
 help / color / mirror / code / Atom feed
From: Anders Johannsen <anders@johannsen.com>
Subject: [patch] Non-X build problems
Date: Wed, 12 Mar 2003 23:28:26 +0100	[thread overview]
Message-ID: <BA95731A.5515%anders@johannsen.com> (raw)

This patch solves a problem with determining the font width in a platform
independent manner, causing a build from cvs on a non-X platform to fail.

The fix should be straight-forward: use the FRAME_FONT() macro. This is,
however, my first dive into the emacs source code.

Thanks,

Anders Johannsen


ajoh@stake% cvs diff -c xdisp.c
Index: xdisp.c
===================================================================
RCS file: /cvsroot/emacs/emacs/src/xdisp.c,v
retrieving revision 1.809
diff -c -r1.809 xdisp.c
*** xdisp.c     12 Mar 2003 12:11:00 -0000      1.809
--- xdisp.c     12 Mar 2003 22:18:50 -0000
***************
*** 8352,8358 ****
        int left_wid = left_fringe_width >= 0 ? left_fringe_width :
-left_fringe_width;
        int right_wid = right_fringe_width >= 0 ? right_fringe_width :
-right_fringe_width;
        int conf_wid = left_wid + right_wid;
!       int font_wid = FONT_WIDTH (f->output_data.x->font);
        int cols = (left_wid + right_wid + font_wid-1) / font_wid;
        int real_wid = cols * font_wid;
        if (left_wid && right_wid)
--- 8352,8358 ----
        int left_wid = left_fringe_width >= 0 ? left_fringe_width :
-left_fringe_width;
        int right_wid = right_fringe_width >= 0 ? right_fringe_width :
-right_fringe_width;
        int conf_wid = left_wid + right_wid;
!       int font_wid = FONT_WIDTH (FRAME_FONT (f));
        int cols = (left_wid + right_wid + font_wid-1) / font_wid;
        int real_wid = cols * font_wid;
        if (left_wid && right_wid)

                 reply	other threads:[~2003-03-12 22:28 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

  List information: https://www.gnu.org/software/emacs/

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=BA95731A.5515%anders@johannsen.com \
    --to=anders@johannsen.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/emacs.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).