annotate lisp/language/english.el @ 112396:e79e716435f4

Make Nextstep port handle multiple screens for resize and move. * nsterm.h (ns_output): Add dont_constrain and zooming. (EmacsView): Add ns_userRect. * nsterm.m (keyDown): If ns_right_alternate_modifier is Qleft, check if ns_alternate_modifier is none. * nsterm.m (x_set_offset, windowDidMove): When calculating y, use first screen, not the window screen. (x_set_window_size): Remove constraints. Calculate origin.y only if zooming is 0 and without referring to a screen. (windowWillResize): Don't modify frameSize. (windowDidBecomeKey, mouseDown): Set dont_constrain to 1. (initFrameFromEmacs): Initialize ns_userRect. (windowShouldZoom): Set zooming to one. Remove all other code. (windowWillUseStandardFrame): Move static ns_userRect to EmacsView. Zero it after restore. (constrainFrameRect): New method for EmacsWindow. (mouseDragged): Always post NSWindowDidResizeNotification after call to windowWillResize.
author Jan D. <jan.h.d@swipnet.se>
date Fri, 21 Jan 2011 15:19:44 +0100
parents ef719132ddfa
children
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: 38414
diff changeset
1 ;;; english.el --- support for English -*- no-byte-compile: t -*-
17301
0b94fe381355 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
2
112218
376148b31b5e Add 2011 to FSF/AIST copyright years.
Glenn Morris <rgm@gnu.org>
parents: 106815
diff changeset
3 ;; Copyright (C) 1997, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011
74544
43cc94d955c2 Update copyright years.
Glenn Morris <rgm@gnu.org>
parents: 64085
diff changeset
4 ;; Free Software Foundation, Inc.
79711
b5d3fc1c4afe Add 2008 to copyright years.
Glenn Morris <rgm@gnu.org>
parents: 78309
diff changeset
5 ;; Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005,
112218
376148b31b5e Add 2011 to FSF/AIST copyright years.
Glenn Morris <rgm@gnu.org>
parents: 106815
diff changeset
6 ;; 2006, 2007, 2008, 2009, 2010, 2011
62396
197607499a29 Fix copyrights.
Kenichi Handa <handa@m17n.org>
parents: 52401
diff changeset
7 ;; National Institute of Advanced Industrial Science and Technology (AIST)
197607499a29 Fix copyrights.
Kenichi Handa <handa@m17n.org>
parents: 52401
diff changeset
8 ;; Registration Number H14PRO021
89483
2f877ed80fa6 *** empty log message ***
Kenichi Handa <handa@m17n.org>
parents: 88123 89199
diff changeset
9 ;; Copyright (C) 2003
2f877ed80fa6 *** empty log message ***
Kenichi Handa <handa@m17n.org>
parents: 88123 89199
diff changeset
10 ;; National Institute of Advanced Industrial Science and Technology (AIST)
2f877ed80fa6 *** empty log message ***
Kenichi Handa <handa@m17n.org>
parents: 88123 89199
diff changeset
11 ;; Registration Number H13PRO009
17301
0b94fe381355 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
12
0b94fe381355 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
13 ;; Keywords: multibyte character, character set, syntax, category
0b94fe381355 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
14
0b94fe381355 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
15 ;; This file is part of GNU Emacs.
0b94fe381355 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
16
94665
55b7f25d920a Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents: 93975
diff changeset
17 ;; GNU Emacs is free software: you can redistribute it and/or modify
17301
0b94fe381355 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
18 ;; it under the terms of the GNU General Public License as published by
94665
55b7f25d920a Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents: 93975
diff changeset
19 ;; the Free Software Foundation, either version 3 of the License, or
55b7f25d920a Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents: 93975
diff changeset
20 ;; (at your option) any later version.
17301
0b94fe381355 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
21
0b94fe381355 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
22 ;; GNU Emacs is distributed in the hope that it will be useful,
0b94fe381355 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
23 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
0b94fe381355 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
24 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
0b94fe381355 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
25 ;; GNU General Public License for more details.
0b94fe381355 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
26
0b94fe381355 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
27 ;; You should have received a copy of the GNU General Public License
94665
55b7f25d920a Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents: 93975
diff changeset
28 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
17301
0b94fe381355 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
29
0b94fe381355 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
30 ;;; Commentary:
0b94fe381355 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
31
0b94fe381355 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
32 ;; We need nothing special to support English on Emacs. Selecting
0b94fe381355 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
33 ;; English as a language environment is one of the ways to reset
0b94fe381355 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
34 ;; various multilingual environment to the original settting.
0b94fe381355 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
35
38414
67b464da13ec Some fixes to follow coding conventions.
Pavel Janík <Pavel@Janik.cz>
parents: 28906
diff changeset
36 ;;; Code:
17301
0b94fe381355 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
37
0b94fe381355 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
38 (set-language-info-alist
22981
dfc5c82b7526 (setup-english-environment): Just call
Kenichi Handa <handa@m17n.org>
parents: 21767
diff changeset
39 "English" '((tutorial . "TUTORIAL")
20744
48d79ef65489 Register coding-priority key in
Kenichi Handa <handa@m17n.org>
parents: 19954
diff changeset
40 (charset ascii)
17767
d93b9414ff2b Make functions setup-LANGUAGE-environment
Kenichi Handa <handa@m17n.org>
parents: 17301
diff changeset
41 (sample-text . "Hello!, Hi!, How are you?")
17994
28d45a11ac18 (setup-english-environment): Set several
Kenichi Handa <handa@m17n.org>
parents: 17841
diff changeset
42 (documentation . "\
18158
723b3b1516b6 ("English"): Improve doc string.
Richard M. Stallman <rms@gnu.org>
parents: 17994
diff changeset
43 Nothing special is needed to handle English.")
17767
d93b9414ff2b Make functions setup-LANGUAGE-environment
Kenichi Handa <handa@m17n.org>
parents: 17301
diff changeset
44 ))
17301
0b94fe381355 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
45
88556
c1d67f50c8f0 (ebcdic-us, ebcdic-uk): New coding systems.
Dave Love <fx@gnu.org>
parents: 38414
diff changeset
46 ;; Mostly because we can now...
c1d67f50c8f0 (ebcdic-us, ebcdic-uk): New coding systems.
Dave Love <fx@gnu.org>
parents: 38414
diff changeset
47 (define-coding-system 'ebcdic-us
c1d67f50c8f0 (ebcdic-us, ebcdic-uk): New coding systems.
Dave Love <fx@gnu.org>
parents: 38414
diff changeset
48 "US version of EBCDIC"
c1d67f50c8f0 (ebcdic-us, ebcdic-uk): New coding systems.
Dave Love <fx@gnu.org>
parents: 38414
diff changeset
49 :coding-type 'charset
c1d67f50c8f0 (ebcdic-us, ebcdic-uk): New coding systems.
Dave Love <fx@gnu.org>
parents: 38414
diff changeset
50 :charset-list '(ebcdic-us)
c1d67f50c8f0 (ebcdic-us, ebcdic-uk): New coding systems.
Dave Love <fx@gnu.org>
parents: 38414
diff changeset
51 :mnemonic ?*)
c1d67f50c8f0 (ebcdic-us, ebcdic-uk): New coding systems.
Dave Love <fx@gnu.org>
parents: 38414
diff changeset
52
c1d67f50c8f0 (ebcdic-us, ebcdic-uk): New coding systems.
Dave Love <fx@gnu.org>
parents: 38414
diff changeset
53 (define-coding-system 'ebcdic-uk
c1d67f50c8f0 (ebcdic-us, ebcdic-uk): New coding systems.
Dave Love <fx@gnu.org>
parents: 38414
diff changeset
54 "UK version of EBCDIC"
c1d67f50c8f0 (ebcdic-us, ebcdic-uk): New coding systems.
Dave Love <fx@gnu.org>
parents: 38414
diff changeset
55 :coding-type 'charset
c1d67f50c8f0 (ebcdic-us, ebcdic-uk): New coding systems.
Dave Love <fx@gnu.org>
parents: 38414
diff changeset
56 :charset-list '(ebcdic-uk)
c1d67f50c8f0 (ebcdic-us, ebcdic-uk): New coding systems.
Dave Love <fx@gnu.org>
parents: 38414
diff changeset
57 :mnemonic ?*)
c1d67f50c8f0 (ebcdic-us, ebcdic-uk): New coding systems.
Dave Love <fx@gnu.org>
parents: 38414
diff changeset
58
89199
3cdeb8452578 (ibm1047, cp1047): New.
Dave Love <fx@gnu.org>
parents: 88556
diff changeset
59 (define-coding-system 'ibm1047
3cdeb8452578 (ibm1047, cp1047): New.
Dave Love <fx@gnu.org>
parents: 88556
diff changeset
60 "A version of EBCDIC used in OS/390 Unix" ; says Groff
3cdeb8452578 (ibm1047, cp1047): New.
Dave Love <fx@gnu.org>
parents: 88556
diff changeset
61 :coding-type 'charset
3cdeb8452578 (ibm1047, cp1047): New.
Dave Love <fx@gnu.org>
parents: 88556
diff changeset
62 :charset-list '(ibm1047)
3cdeb8452578 (ibm1047, cp1047): New.
Dave Love <fx@gnu.org>
parents: 88556
diff changeset
63 :mnemonic ?*)
3cdeb8452578 (ibm1047, cp1047): New.
Dave Love <fx@gnu.org>
parents: 88556
diff changeset
64 (define-coding-system-alias 'cp1047 'ibm1047)
3cdeb8452578 (ibm1047, cp1047): New.
Dave Love <fx@gnu.org>
parents: 88556
diff changeset
65
19954
9c37afba82bc (ASCII): Define as alias for English.
Richard M. Stallman <rms@gnu.org>
parents: 19922
diff changeset
66 ;; Make "ASCII" an alias of "English" language environment.
9c37afba82bc (ASCII): Define as alias for English.
Richard M. Stallman <rms@gnu.org>
parents: 19922
diff changeset
67 (set-language-info-alist
9c37afba82bc (ASCII): Define as alias for English.
Richard M. Stallman <rms@gnu.org>
parents: 19922
diff changeset
68 "ASCII" (cdr (assoc "English" language-info-alist)))
9c37afba82bc (ASCII): Define as alias for English.
Richard M. Stallman <rms@gnu.org>
parents: 19922
diff changeset
69
17301
0b94fe381355 Initial revision
Kenichi Handa <handa@m17n.org>
parents:
diff changeset
70 ;;; english.el ends here