From a85472bbdcd16b0a695cd75f98b68ee39b86ae2f Mon Sep 17 00:00:00 2001 From: Paul Eggert Date: Sun, 13 Sep 2015 11:55:28 -0700 Subject: Port Unicode char detection to FreeBSD+svgalib MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Problem reported by Ashish SHUKLA in: http://lists.gnu.org/archive/html/emacs-devel/2015-09/msg00531.html * configure.ac: Check for struct unipair.unicode instead of for , since that’s more specific to what the code actually needs. * src/terminal.c: Use HAVE_STRUCT_UNIPAIR_UNICODE, not HAVE_LINUX_KD_H. --- src/terminal.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/terminal.c') diff --git a/src/terminal.c b/src/terminal.c index d7c16d9d036..80c6aa20bee 100644 --- a/src/terminal.c +++ b/src/terminal.c @@ -28,7 +28,7 @@ along with GNU Emacs. If not, see . */ #include "coding.h" #include "keyboard.h" -#ifdef HAVE_LINUX_KD_H +#if HAVE_STRUCT_UNIPAIR_UNICODE # include # include # include @@ -532,7 +532,7 @@ selected frame's terminal). */) return store_terminal_param (decode_live_terminal (terminal), parameter, value); } -#if HAVE_LINUX_KD_H +#if HAVE_STRUCT_UNIPAIR_UNICODE /* Compute the glyph code table for T. */ @@ -575,7 +575,7 @@ calculate_glyph_code_table (struct terminal *t) Lisp_Object terminal_glyph_code (struct terminal *t, int ch) { -#if HAVE_LINUX_KD_H +#if HAVE_STRUCT_UNIPAIR_UNICODE if (t->type == output_termcap) { /* As a hack, recompute the table when CH is the maximum -- cgit v1.2.3