aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorYAMAMOTO Mitsuharu2005-05-06 08:05:18 +0000
committerYAMAMOTO Mitsuharu2005-05-06 08:05:18 +0000
commit17d28d26ff78f6904a400bfc430e71aaa6b5fc96 (patch)
treed79764859d3970de00fea8a30148c38f24e0b6aa
parent75440ed457807eb0497856d2f3fd857eb4b16664 (diff)
downloademacs-17d28d26ff78f6904a400bfc430e71aaa6b5fc96.tar.gz
emacs-17d28d26ff78f6904a400bfc430e71aaa6b5fc96.zip
*** empty log message ***
-rw-r--r--lisp/ChangeLog14
-rw-r--r--mac/ChangeLog4
-rw-r--r--src/ChangeLog53
3 files changed, 71 insertions, 0 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 3453149b6fd..4cf47c9e2c6 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,17 @@
12005-05-06 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
2
3 * term/mac-win.el: Don't define or bind scroll bar functions if
4 x-toolkit-scroll-bars is t.
5 (x-select-text, x-get-selection-value): Clear
6 x-last-selected-text-clipboard if x-select-enable-clipboard is
7 nil.
8 (PRIMARY): Put mac-scrap-name property.
9 (mac-select-convert-to-file-url): New function.
10 (public.file-url): New selection target type. Add to
11 selection-converter-alist.
12 (x-get-selection, x-selection-value): Handle it.
13 (x-cut-buffer-or-selection-value): New alias.
14
12005-05-05 Luc Teirlinck <teirllm@auburn.edu> 152005-05-05 Luc Teirlinck <teirllm@auburn.edu>
2 16
3 * emacs-lisp/byte-run.el (define-obsolete-function-alias) 17 * emacs-lisp/byte-run.el (define-obsolete-function-alias)
diff --git a/mac/ChangeLog b/mac/ChangeLog
index 27cd5d98be9..96ba2ee5201 100644
--- a/mac/ChangeLog
+++ b/mac/ChangeLog
@@ -1,3 +1,7 @@
12005-05-06 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
2
3 * inc/config.h [HAVE_CARBON]: Define USE_TOOLKIT_SCROLL_BARS.
4
12005-04-24 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp> 52005-04-24 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
2 6
3 * makefile.MPW (MacObjects): Add macselect.c.x. 7 * makefile.MPW (MacObjects): Add macselect.c.x.
diff --git a/src/ChangeLog b/src/ChangeLog
index 02a81fb7f7c..b44e3e4e626 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,56 @@
12005-05-06 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
2
3 * macselect.c (x_own_selection): Accept Lisp string as result of
4 selection converter function.
5 (x_clear_frame_selections): Don't call x-lost-selection-functions
6 if Emacs is not owner of the selection.
7 (Vmac_services_selection): Put variable and initialization in
8 #ifdef MAC_OSX.
9 (syms_of_macselect) [MAC_OSX]: Set default value of
10 Vmac_services_selection to PRIMARY.
11
12 * macterm.c (toolkit_scroll_bar_interaction): Remove unused
13 variable.
14 (mac_handle_tool_bar_click): Remove unused function and
15 declaration.
16 [USE_TOOLKIT_SCROLL_BARS] (scroll_bar_timer_callback)
17 (install_scroll_bar_timer, set_scroll_bar_timer)
18 (control_part_code_to_scroll_bar_part, construct_scroll_bar_click)
19 (get_control_part_bound, x_scroll_bar_handle_press)
20 (x_scroll_bar_handle_release, x_scroll_bar_handle_drag)
21 (x_set_toolkit_scroll_bar_thumb): New functions and declarations.
22 [USE_TOOLKIT_SCROLL_BARS] (last_scroll_bar_part, scroll_bar_timer)
23 (scroll_bar_timer_event_posted_p): New variables.
24 [USE_TOOLKIT_SCROLL_BARS] (SCROLL_BAR_FIRST_DELAY)
25 (SCROLL_BAR_CONTINUOUS_DELAY): New macros.
26 (x_scroll_bar_create): Set control reference with NewControl.
27 (x_scroll_bar_create) [USE_TOOLKIT_SCROLL_BARS]: Initialize
28 track_top and track_height to nil.
29 (x_scroll_bar_set_handle, x_scroll_bar_note_movement): Put
30 functions in #ifndef USE_TOOLKIT_SCROLL_BARS.
31 (XTset_vertical_scroll_bar): Don't make space between scroll bar
32 and associated window.
33 (XTset_vertical_scroll_bar) [MAC_OSX]: Get scroll bar area width
34 from window config.
35 (XTset_vertical_scroll_bar) [USE_TOOLKIT_SCROLL_BARS]: Set
36 track_top and track_height to nil when scroll bar size is changed.
37 Recalculate them if they are nil.
38 (XTread_socket) [MAC_OSX]: Use control kind to determine if the
39 clicked control is a scroll bar.
40 (XTread_socket) [USE_TOOLKIT_SCROLL_BARS]: Use toolkit scroll bar
41 event handler functions. Don't add modifiers to scroll bar click
42 events. Call scroll bar release handler when window is
43 deactivated.
44 (mac_initialize): Remove unused code for X toolkit.
45 (syms_of_macterm) [!USE_TOOLKIT_SCROLL_BARS]: Initialize
46 Vx_toolkit_scroll_bars to nil.
47
48 * macterm.h (struct scroll_bar) [USE_TOOLKIT_SCROLL_BARS]: New
49 members track_top and track_height.
50
51 * sysselect.h [DARWIN || MAC_OSX]: Temporarily undefine
52 init_process when including sys/select.h.
53
12005-05-05 Luc Teirlinck <teirllm@auburn.edu> 542005-05-05 Luc Teirlinck <teirllm@auburn.edu>
2 55
3 * eval.c (Fdefvaralias): Doc fix. 56 * eval.c (Fdefvaralias): Doc fix.