aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorYAMAMOTO Mitsuharu2005-05-13 08:55:33 +0000
committerYAMAMOTO Mitsuharu2005-05-13 08:55:33 +0000
commit5063dbbf5a6145d5feb0c951d153d376bebb668f (patch)
tree6b869ec1384d44cd1fffbbb10a9b6ee7730919a5
parent5d6da11edb622f93fd1392836a0d3187bab838ff (diff)
downloademacs-5063dbbf5a6145d5feb0c951d153d376bebb668f.tar.gz
emacs-5063dbbf5a6145d5feb0c951d153d376bebb668f.zip
*** empty log message ***
-rw-r--r--ChangeLog7
-rw-r--r--lib-src/ChangeLog5
-rw-r--r--lisp/ChangeLog6
-rw-r--r--mac/ChangeLog45
-rw-r--r--src/ChangeLog45
5 files changed, 106 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 7468324b229..0820d4984da 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
12005-05-13 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
2
3 * configure.in: Don't check HAVE_CARBON if HAVE_X11 is set to yes.
4 Check HAVE_CARBON before USE_TOOLKIT_SCROLL_BARS. Define
5 USE_TOOLKIT_SCROLL_BARS by default if HAVE_CARBON is set to yes.
6 * configure: Regenerate.
7
12005-05-07 J,Ai(Br,At(Bme Marant <jerome@marant.org> 82005-05-07 J,Ai(Br,At(Bme Marant <jerome@marant.org>
2 9
3 * make-dist: Remove references to makefile.nt and makefile.def. 10 * make-dist: Remove references to makefile.nt and makefile.def.
diff --git a/lib-src/ChangeLog b/lib-src/ChangeLog
index 513bc8f21ba..1370f05a9d6 100644
--- a/lib-src/ChangeLog
+++ b/lib-src/ChangeLog
@@ -1,3 +1,8 @@
12005-05-13 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
2
3 * make-docfile.c (DIRECTORY_SEP): New macro.
4 (IS_DIRECTORY_SEP): Use it.
5
12005-03-18 Jan Dj,Ad(Brv <jan.h.d@swipnet.se> 62005-03-18 Jan Dj,Ad(Brv <jan.h.d@swipnet.se>
2 7
3 * emacsclient.c: Avoid expansion of getcwd when defined as a macro. 8 * emacsclient.c: Avoid expansion of getcwd when defined as a macro.
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 11fd1eb9359..3a960bc8067 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,9 @@
12005-05-13 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
2
3 * term/mac-win.el (mac-select-convert-to-string): Try coding
4 systems in mac-script-code-coding-systems if specified one cannot
5 encode string for `com.apple.traditional-mac-plain-text'.
6
12005-05-13 Daniel Pfeiffer <occitan@esperanto.org> 72005-05-13 Daniel Pfeiffer <occitan@esperanto.org>
2 8
3 * progmodes/make-mode.el (makefile-targets-face) 9 * progmodes/make-mode.el (makefile-targets-face)
diff --git a/mac/ChangeLog b/mac/ChangeLog
index 96ba2ee5201..61489e5a88e 100644
--- a/mac/ChangeLog
+++ b/mac/ChangeLog
@@ -1,6 +1,47 @@
12005-05-13 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
2
3 * makefile.MPW (buildobj.lst): New target.
4 (Clean): Delete file buildobj.lst.
5 (Emacs, {DocTarget}DOC): Depend on buildobj.lst.
6 (EmacsSource, MacSource, LispSource, LispSourceDontCompile):
7 Remove variables.
8 (SOME_MACHINE_OBJECTS, shortlisp, SOME_MACHINE_LISP): New
9 variables.
10 ({DocTarget}DOC): Use them.
11 (Make-DocFile-PPCCOptions): Add `-d MAC_OS -d MAC_OS8'.
12
13 * inc/config.h: Sync with src/config.in.
14 (DO_BLOCK_INPUT, HAVE_DIFFTIME, HAVE_LOCALE_H, HAVE_MEMCMP)
15 (HAVE_MEMCPY, HAVE_MEMMOVE, HAVE_MEMSET, HAVE_SETITIMER)
16 (HAVE_SIZE_T, HAVE_SYS_IOCTL_H, HAVE_SYS_PARAM_H, HAVE_SYS_STAT_H)
17 (HAVE_SYS_TYPES_H, TIME_WITH_SYS_TIME, SYNC_INPUT): Define them.
18 [__MRC__] (HAVE_ALLOCA_H): Likewise.
19 (config_machfile, config_opsysfile, my_strftime): New macros.
20 (HAVE_PWD_H): Move from s-mac.h.
21 (HAVE_ALLOCA, C_ALLOCA): Move from m-mac.h.
22 (PTR): Move to s-mac.h.
23
24 * inc/m-mac.h: (HAVE_ALLOCA, C_ALLOCA): Move to config.h.
25
26 * inc/s-mac.h: Sync with src/s/template.h. Don't include fcntl.h,
27 time.h, or signal.h.
28 (index, rindex): New macros.
29 [__MRC__] (sigmask, __signal_max, NSIG): Adjust signal numbers for
30 compatibility with predefined ones.
31 (PTR): Move from s-mac.h.
32 (HAVE_PWD_H): Move to config.h.
33 (volatile): Remove macro.
34 [__MRC__] (strftime): Likewise.
35 (read_input_waiting, sys_gmtime, sys_localtime, sys_ctime)
36 (sys_time, sys_signal, atof): Remove declarations.
37
38 * inc/sys/time.h (ITIMER_REAL): New macro.
39 (struct itimerval): New struct.
40 (setitimer): New extern.
41
12005-05-06 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp> 422005-05-06 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
2 43
3 * inc/config.h [HAVE_CARBON]: Define USE_TOOLKIT_SCROLL_BARS. 44 * inc/config.h [HAVE_CARBON] (USE_TOOLKIT_SCROLL_BARS): Define.
4 45
52005-04-24 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp> 462005-04-24 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
6 47
@@ -10,7 +51,7 @@
10 51
11 * Emacs.app/Contents/Info.plist: Add NSServices key and data. 52 * Emacs.app/Contents/Info.plist: Add NSServices key and data.
12 53
13 * inc/s-mac.h: Define HAVE_PWD_H. 54 * inc/s-mac.h (HAVE_PWD_H): Define.
14 55
152005-04-14 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp> 562005-04-14 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
16 57
diff --git a/src/ChangeLog b/src/ChangeLog
index c20072eb80c..a86f78e5b96 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,48 @@
12005-05-13 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
2
3 * emacs.c (main) [MAC_OS8]: Call init_atimer before mac_term_init.
4
5 * keyboard.c (readable_events) [USE_TOOLKIT_SCROLL_BARS]: Regard
6 toolkit scroll bar thumb drag events as squeezable and prevent
7 redisplay from being paused by them.
8
9 * mac.c [!MAC_OSX]: Include keyboard.h and syssignal.h.
10 [!MAC_OSX] (target_ticks): Remove variable.
11 [!MAC_OSX] (check_alarm, pause, index): Remove functions.
12 [!MAC_OSX && __MRC__] (sys_strftime): Likewise.
13 [!MAC_OSX] (select): If fd 0 is not set in rfds and some input
14 event occurs before timeout, behave as if the function were
15 interrupted.
16 [!MAC_OSX] (sigblock, sigsetmask, alarm): Simulate SIGALRM
17 handling using Time Manager routines.
18 [!MAC_OSX] (mac_atimer_task, mac_atimer_qlink, signal_mask): New
19 variables.
20 [!MAC_OSX] (mac_atimer_handler, set_mac_atimer, remove_mac_atimer)
21 (setitimer): New functions.
22
23 * macfns.c, macmenu.c: Don't include signal.h.
24
25 * macterm.c [USE_TOOLKIT_SCROLL_BARS] (get_control_part_bounds):
26 Rename from get_control_part_bound. All callers changed.
27 (x_scroll_bar_clear): New function.
28 (x_clear_frame): Use it.
29 (XTset_vertical_scroll_bar): Don't call Draw1Control.
30 (x_scroll_bar_handle_click): Change type of second argument from
31 int to ControlPartCode.
32 (check_alarm): Remove declaration.
33 (XTread_Socket) [!TARGET_API_MAC_CARBON]: Don't call it.
34 (XTread_Socket): Use ControlPartCode instead of SInt16.
35
362005-05-13 Nozomu Ando <nand@mac.com>
37
38 * unexmacosx.c: Include assert.h.
39 (MACOSX_MALLOC_MULT16): New define.
40 [MACOSX_MALLOC_MULT16] (ptr_in_unexec_regions): Determine whether
41 ptr is in unexec regions by checking it is multiple of 16.
42 (unexec_malloc_header_t): New typedef.
43 (unexec_malloc, unexec_realloc, unexec_free): Store and use
44 allocated size information in unexec_malloc_header.
45
12005-05-10 Richard M. Stallman <rms@gnu.org> 462005-05-10 Richard M. Stallman <rms@gnu.org>
2 47
3 * xterm.c (noinclude): Add #undef. 48 * xterm.c (noinclude): Add #undef.