diff options
| author | YAMAMOTO Mitsuharu | 2006-10-19 08:02:23 +0000 |
|---|---|---|
| committer | YAMAMOTO Mitsuharu | 2006-10-19 08:02:23 +0000 |
| commit | 045b190821781a78d6618b296d97369612ad4bd2 (patch) | |
| tree | b762e81df3cb8e3f796b816b261c2295c5aac98e | |
| parent | 9346531434a0091a5655d83f9436fa011431bcfd (diff) | |
| download | emacs-045b190821781a78d6618b296d97369612ad4bd2.tar.gz emacs-045b190821781a78d6618b296d97369612ad4bd2.zip | |
*** empty log message ***
| -rw-r--r-- | lisp/ChangeLog | 6 | ||||
| -rw-r--r-- | lisp/term/mac-win.el | 9 | ||||
| -rw-r--r-- | src/ChangeLog | 6 |
3 files changed, 18 insertions, 3 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index ef70b48a191..7aeb8487128 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,9 @@ | |||
| 1 | 2006-10-19 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp> | ||
| 2 | |||
| 3 | * version.el (emacs-version): Use mac-carbon-version-string. | ||
| 4 | |||
| 5 | * term/macterm.el (res-geometry): Apply 2006-10-18 change for x-win.el. | ||
| 6 | |||
| 1 | 2006-10-19 Jan Dj,Ad(Brv <jan.h.d@swipnet.se> | 7 | 2006-10-19 Jan Dj,Ad(Brv <jan.h.d@swipnet.se> |
| 2 | 8 | ||
| 3 | * select.el (ccl-check-utf-8, string-utf-8-p): New functions | 9 | * select.el (ccl-check-utf-8, string-utf-8-p): New functions |
diff --git a/lisp/term/mac-win.el b/lisp/term/mac-win.el index bda2e398cb7..3f67c2c6613 100644 --- a/lisp/term/mac-win.el +++ b/lisp/term/mac-win.el | |||
| @@ -2526,12 +2526,15 @@ ascii:-*-Monaco-*-*-*-*-12-*-*-*-*-*-mac-roman") | |||
| 2526 | (cons '(user-size . t) parsed)))) | 2526 | (cons '(user-size . t) parsed)))) |
| 2527 | ;; All geometry parms apply to the initial frame. | 2527 | ;; All geometry parms apply to the initial frame. |
| 2528 | (setq initial-frame-alist (append initial-frame-alist parsed)) | 2528 | (setq initial-frame-alist (append initial-frame-alist parsed)) |
| 2529 | ;; The size parms apply to all frames. | 2529 | ;; The size parms apply to all frames. Don't set it if there are |
| 2530 | (if (assq 'height parsed) | 2530 | ;; sizes there already (from command line). |
| 2531 | (if (and (assq 'height parsed) | ||
| 2532 | (not (assq 'height default-frame-alist))) | ||
| 2531 | (setq default-frame-alist | 2533 | (setq default-frame-alist |
| 2532 | (cons (cons 'height (cdr (assq 'height parsed))) | 2534 | (cons (cons 'height (cdr (assq 'height parsed))) |
| 2533 | default-frame-alist))) | 2535 | default-frame-alist))) |
| 2534 | (if (assq 'width parsed) | 2536 | (if (and (assq 'width parsed) |
| 2537 | (not (assq 'width default-frame-alist))) | ||
| 2535 | (setq default-frame-alist | 2538 | (setq default-frame-alist |
| 2536 | (cons (cons 'width (cdr (assq 'width parsed))) | 2539 | (cons (cons 'width (cdr (assq 'width parsed))) |
| 2537 | default-frame-alist)))))) | 2540 | default-frame-alist)))))) |
diff --git a/src/ChangeLog b/src/ChangeLog index 9b33d6c2d70..0e91753e9ac 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,9 @@ | |||
| 1 | 2006-10-19 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp> | ||
| 2 | |||
| 3 | * macfns.c (Vmac_carbon_version_string) [TARGET_API_MAC_CARBON]: | ||
| 4 | New variable. | ||
| 5 | (syms_of_macfns) [TARGET_API_MAC_CARBON]: Defvar it. | ||
| 6 | |||
| 1 | 2006-10-19 Jan Dj,Ad(Brv <jan.h.d@swipnet.se> | 7 | 2006-10-19 Jan Dj,Ad(Brv <jan.h.d@swipnet.se> |
| 2 | 8 | ||
| 3 | * xselect.c (x_handle_selection_request): If the converted_selection | 9 | * xselect.c (x_handle_selection_request): If the converted_selection |