annotate lisp/language/utf-8-lang.el @ 51209:880539128b51

Make (many) trivial substitutions for renamed and new macros in dispextern.h, frame.h and window.h. (window_box_width): Adapt to per-window fringes and scroll bars, and new fringe vs. display margin position. Note that returned value is no longer guaranteed to be a whole multiple of the frame column width, since per-window fringes may now be any width. (window_box_left_offset): New function like window_box_left, but value is relative to left border of window (rather than frame). (window_box_right_offset): New function like window_box_right, but value is relative to left border of window. (window_box_left): Adapt to per-window fringes and scroll bars, and new fringe vs. display margin position. Simplify by using WINDOW_LEFT_EDGE_X and window_box_left_offset. (window_box): Allow null args for unnecessary return values; change/simplify relevant callers. (x_y_to_hpos_vpos): Adapt to per-window fringes and scroll bars, and new fringe vs. display margin position. Use window_box_left_offset and window_box_right_offset (get_glyph_string_clip_rect): Adapt to per-window fringes and scroll bars, and new fringe vs. display margin position. Use WINDOW_LEFT_EDGE_X and WINDOW_TOTAL_WIDTH. (draw_fringe_bitmap): Rework to handle per-window fringes and new fringe vs. display margin position. (hscroll_window_tree): Use window_box_width instead of window_box. (redisplay_window): Adapt to per-window scroll bars. (draw_glyphs): Rework to handle per-window fringes and scroll bars, and new fringe vs. display margin position. Use WINDOW_LEFT_EDGE_X, WINDOW_TOTAL_WIDTH, and window_box_left. (x_clear_end_of_line): Adapt to per-window fringes and scroll bars, and new fringe vs. display margin position. Fix bug which increased total width of full_width rows by width of scroll bars although window's total width already includes that. (x_fix_overlapping_area): Simplify using window_box_left_offset. (expose_area): Simplify using window_box_left_offset. (x_draw_vertical_border): Handle per-window scroll bar settings, mixing windows with left, right and no scroll bars.
author Kim F. Storm <storm@cua.dk>
date Sat, 24 May 2003 22:08:54 +0000
parents 33d53d287ee4
children 695cf19ef79e d7ddb3e565de
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
47726
33d53d287ee4 Add "no-byte-compile: t" in first line.
Juanma Barranquero <lekktu@gmail.com>
parents: 45357
diff changeset
1 ;;; utf-8-lang.el --- generic UTF-8 language environment -*- no-byte-compile: t -*-
42045
14d6652598ef *** empty log message ***
Dave Love <fx@gnu.org>
parents:
diff changeset
2
14d6652598ef *** empty log message ***
Dave Love <fx@gnu.org>
parents:
diff changeset
3 ;; Copyright (C) 2001 Free Software Foundation, Inc.
14d6652598ef *** empty log message ***
Dave Love <fx@gnu.org>
parents:
diff changeset
4
14d6652598ef *** empty log message ***
Dave Love <fx@gnu.org>
parents:
diff changeset
5 ;; Author: Dave Love <fx@gnu.org>
14d6652598ef *** empty log message ***
Dave Love <fx@gnu.org>
parents:
diff changeset
6 ;; Keywords: i18n
14d6652598ef *** empty log message ***
Dave Love <fx@gnu.org>
parents:
diff changeset
7
42320
44b4a14ae7fc Fix Lisp headers.
Pavel Janík <Pavel@Janik.cz>
parents: 42107
diff changeset
8 ;; This file is part of GNU Emacs.
44b4a14ae7fc Fix Lisp headers.
Pavel Janík <Pavel@Janik.cz>
parents: 42107
diff changeset
9
45357
a0eaee1a642d Comment change.
Richard M. Stallman <rms@gnu.org>
parents: 42320
diff changeset
10 ;; GNU Emacs is free software; you can redistribute it and/or modify
42045
14d6652598ef *** empty log message ***
Dave Love <fx@gnu.org>
parents:
diff changeset
11 ;; it under the terms of the GNU General Public License as published by
14d6652598ef *** empty log message ***
Dave Love <fx@gnu.org>
parents:
diff changeset
12 ;; the Free Software Foundation; either version 2, or (at your option)
14d6652598ef *** empty log message ***
Dave Love <fx@gnu.org>
parents:
diff changeset
13 ;; any later version.
14d6652598ef *** empty log message ***
Dave Love <fx@gnu.org>
parents:
diff changeset
14
45357
a0eaee1a642d Comment change.
Richard M. Stallman <rms@gnu.org>
parents: 42320
diff changeset
15 ;; GNU Emacs is distributed in the hope that it will be useful,
42045
14d6652598ef *** empty log message ***
Dave Love <fx@gnu.org>
parents:
diff changeset
16 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
14d6652598ef *** empty log message ***
Dave Love <fx@gnu.org>
parents:
diff changeset
17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14d6652598ef *** empty log message ***
Dave Love <fx@gnu.org>
parents:
diff changeset
18 ;; GNU General Public License for more details.
14d6652598ef *** empty log message ***
Dave Love <fx@gnu.org>
parents:
diff changeset
19
14d6652598ef *** empty log message ***
Dave Love <fx@gnu.org>
parents:
diff changeset
20 ;; You should have received a copy of the GNU General Public License
45357
a0eaee1a642d Comment change.
Richard M. Stallman <rms@gnu.org>
parents: 42320
diff changeset
21 ;; along with GNU Emacs; see the file COPYING. If not, write to the
a0eaee1a642d Comment change.
Richard M. Stallman <rms@gnu.org>
parents: 42320
diff changeset
22 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
42045
14d6652598ef *** empty log message ***
Dave Love <fx@gnu.org>
parents:
diff changeset
23 ;; Boston, MA 02111-1307, USA.
14d6652598ef *** empty log message ***
Dave Love <fx@gnu.org>
parents:
diff changeset
24
14d6652598ef *** empty log message ***
Dave Love <fx@gnu.org>
parents:
diff changeset
25 ;;; Commentary:
14d6652598ef *** empty log message ***
Dave Love <fx@gnu.org>
parents:
diff changeset
26
14d6652598ef *** empty log message ***
Dave Love <fx@gnu.org>
parents:
diff changeset
27 ;;; Code:
14d6652598ef *** empty log message ***
Dave Love <fx@gnu.org>
parents:
diff changeset
28
14d6652598ef *** empty log message ***
Dave Love <fx@gnu.org>
parents:
diff changeset
29 (set-language-info-alist
14d6652598ef *** empty log message ***
Dave Love <fx@gnu.org>
parents:
diff changeset
30 "UTF-8" `((coding-system mule-utf-8)
42107
7a239c5cc1ed Fix typo.
Dave Love <fx@gnu.org>
parents: 42045
diff changeset
31 (coding-priority mule-utf-8)
42045
14d6652598ef *** empty log message ***
Dave Love <fx@gnu.org>
parents:
diff changeset
32 (setup-function
14d6652598ef *** empty log message ***
Dave Love <fx@gnu.org>
parents:
diff changeset
33 . (lambda ()
14d6652598ef *** empty log message ***
Dave Love <fx@gnu.org>
parents:
diff changeset
34 ;; Use Unicode font under Windows. Jason Rumney fecit.
14d6652598ef *** empty log message ***
Dave Love <fx@gnu.org>
parents:
diff changeset
35 (if (and (fboundp 'w32-add-charset-info)
14d6652598ef *** empty log message ***
Dave Love <fx@gnu.org>
parents:
diff changeset
36 (not (boundp 'w32-unicode-charset-defined)))
14d6652598ef *** empty log message ***
Dave Love <fx@gnu.org>
parents:
diff changeset
37 (w32-add-charset-info "iso10646-1" 'w32-charset-ansi t))))
14d6652598ef *** empty log message ***
Dave Love <fx@gnu.org>
parents:
diff changeset
38 ;; Is this appropriate?
14d6652598ef *** empty log message ***
Dave Love <fx@gnu.org>
parents:
diff changeset
39 ;; (exit-function
14d6652598ef *** empty log message ***
Dave Love <fx@gnu.org>
parents:
diff changeset
40 ;; . (lambda ()
14d6652598ef *** empty log message ***
Dave Love <fx@gnu.org>
parents:
diff changeset
41 ;; (if (and (fboundp 'w32-add-charset-info)
14d6652598ef *** empty log message ***
Dave Love <fx@gnu.org>
parents:
diff changeset
42 ;; (not (boundp 'w32-unicode-charset-defined)))
14d6652598ef *** empty log message ***
Dave Love <fx@gnu.org>
parents:
diff changeset
43 ;; (setq w32-charset-info-alist
14d6652598ef *** empty log message ***
Dave Love <fx@gnu.org>
parents:
diff changeset
44 ;; (delete (assoc "iso10646-1")
14d6652598ef *** empty log message ***
Dave Love <fx@gnu.org>
parents:
diff changeset
45 ;; w32-charset-info-alist)))))
14d6652598ef *** empty log message ***
Dave Love <fx@gnu.org>
parents:
diff changeset
46 (input-method . "rfc1345") ; maybe not the best choice
14d6652598ef *** empty log message ***
Dave Love <fx@gnu.org>
parents:
diff changeset
47 (documentation . "\
14d6652598ef *** empty log message ***
Dave Love <fx@gnu.org>
parents:
diff changeset
48 This language environment is a generic one for a subset of the Unicode
14d6652598ef *** empty log message ***
Dave Love <fx@gnu.org>
parents:
diff changeset
49 character set encoded in UTF-8."))
14d6652598ef *** empty log message ***
Dave Love <fx@gnu.org>
parents:
diff changeset
50 nil)
14d6652598ef *** empty log message ***
Dave Love <fx@gnu.org>
parents:
diff changeset
51
14d6652598ef *** empty log message ***
Dave Love <fx@gnu.org>
parents:
diff changeset
52 (provide 'utf-8-lang)
14d6652598ef *** empty log message ***
Dave Love <fx@gnu.org>
parents:
diff changeset
53 ;;; utf-8-lang.el ends here