diff options
| author | Miles Bader | 2007-08-03 05:27:43 +0000 |
|---|---|---|
| committer | Miles Bader | 2007-08-03 05:27:43 +0000 |
| commit | 49b23c2a404cf31fb1aeecc7932a7304aaf16a67 (patch) | |
| tree | 259f81c54acb77cd4aeb47ce88e5e56ff7141a99 /src | |
| parent | 9899d01a0ccec166e04caa60657a44e614be50cd (diff) | |
| parent | 4211679b08d6a9c369cb22f085b9bb61d5d4eeda (diff) | |
| download | emacs-49b23c2a404cf31fb1aeecc7932a7304aaf16a67.tar.gz emacs-49b23c2a404cf31fb1aeecc7932a7304aaf16a67.zip | |
Merge from emacs--devo--0
Patches applied:
* emacs--devo--0 (patch 839-842)
- Update from CVS
- Change capitalization of VC backend names for new backends
Revision: emacs@sv.gnu.org/emacs--multi-tty--0--patch-29
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 9 | ||||
| -rw-r--r-- | src/gtkutil.c | 5 | ||||
| -rw-r--r-- | src/mac.c | 10 |
3 files changed, 14 insertions, 10 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index b8054295979..f26f918c941 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,12 @@ | |||
| 1 | 2007-08-01 Ryo Yoshitake <ryo@shiftmode.net> (tiny change) | ||
| 2 | |||
| 3 | * mac.c (init_mac_osx_environment): Adjust load-path on self-contained | ||
| 4 | build. | ||
| 5 | |||
| 6 | 2007-07-31 Stefan Monnier <monnier@iro.umontreal.ca> | ||
| 7 | |||
| 8 | * gtkutil.c (xg_tool_bar_callback): Generate a single TOOL_BAR_EVENT. | ||
| 9 | |||
| 1 | 2007-07-30 Katsumi Yamaoka <yamaoka@jpl.org> | 10 | 2007-07-30 Katsumi Yamaoka <yamaoka@jpl.org> |
| 2 | 11 | ||
| 3 | * puresize.h (BASE_PURESIZE): Increase to 1130000. | 12 | * puresize.h (BASE_PURESIZE): Increase to 1130000. |
diff --git a/src/gtkutil.c b/src/gtkutil.c index ca8c380abb5..a4c0522c49b 100644 --- a/src/gtkutil.c +++ b/src/gtkutil.c | |||
| @@ -3374,11 +3374,6 @@ xg_tool_bar_callback (w, client_data) | |||
| 3374 | XSETFRAME (frame, f); | 3374 | XSETFRAME (frame, f); |
| 3375 | event.kind = TOOL_BAR_EVENT; | 3375 | event.kind = TOOL_BAR_EVENT; |
| 3376 | event.frame_or_window = frame; | 3376 | event.frame_or_window = frame; |
| 3377 | event.arg = frame; | ||
| 3378 | kbd_buffer_store_event (&event); | ||
| 3379 | |||
| 3380 | event.kind = TOOL_BAR_EVENT; | ||
| 3381 | event.frame_or_window = frame; | ||
| 3382 | event.arg = key; | 3377 | event.arg = key; |
| 3383 | /* Convert between the modifier bits GDK uses and the modifier bits | 3378 | /* Convert between the modifier bits GDK uses and the modifier bits |
| 3384 | Emacs uses. This assumes GDK an X masks are the same, which they are when | 3379 | Emacs uses. This assumes GDK an X masks are the same, which they are when |
| @@ -5318,8 +5318,8 @@ init_mac_osx_environment () | |||
| 5318 | /* P should have sufficient room for the pathname of the bundle plus | 5318 | /* P should have sufficient room for the pathname of the bundle plus |
| 5319 | the subpath in it leading to the respective directories. Q | 5319 | the subpath in it leading to the respective directories. Q |
| 5320 | should have three times that much room because EMACSLOADPATH can | 5320 | should have three times that much room because EMACSLOADPATH can |
| 5321 | have the value "<path to lisp dir>:<path to leim dir>:<path to | 5321 | have the value "<path to site-lisp dir>:<path to lisp dir>:<path |
| 5322 | site-lisp dir>". */ | 5322 | to leim dir>". */ |
| 5323 | p = (char *) alloca (app_bundle_pathname_len + 50); | 5323 | p = (char *) alloca (app_bundle_pathname_len + 50); |
| 5324 | q = (char *) alloca (3 * app_bundle_pathname_len + 150); | 5324 | q = (char *) alloca (3 * app_bundle_pathname_len + 150); |
| 5325 | if (!getenv ("EMACSLOADPATH")) | 5325 | if (!getenv ("EMACSLOADPATH")) |
| @@ -5327,12 +5327,12 @@ init_mac_osx_environment () | |||
| 5327 | q[0] = '\0'; | 5327 | q[0] = '\0'; |
| 5328 | 5328 | ||
| 5329 | strcpy (p, app_bundle_pathname); | 5329 | strcpy (p, app_bundle_pathname); |
| 5330 | strcat (p, "/Contents/Resources/lisp"); | 5330 | strcat (p, "/Contents/Resources/site-lisp"); |
| 5331 | if (stat (p, &st) == 0 && (st.st_mode & S_IFMT) == S_IFDIR) | 5331 | if (stat (p, &st) == 0 && (st.st_mode & S_IFMT) == S_IFDIR) |
| 5332 | strcat (q, p); | 5332 | strcat (q, p); |
| 5333 | 5333 | ||
| 5334 | strcpy (p, app_bundle_pathname); | 5334 | strcpy (p, app_bundle_pathname); |
| 5335 | strcat (p, "/Contents/Resources/leim"); | 5335 | strcat (p, "/Contents/Resources/lisp"); |
| 5336 | if (stat (p, &st) == 0 && (st.st_mode & S_IFMT) == S_IFDIR) | 5336 | if (stat (p, &st) == 0 && (st.st_mode & S_IFMT) == S_IFDIR) |
| 5337 | { | 5337 | { |
| 5338 | if (q[0] != '\0') | 5338 | if (q[0] != '\0') |
| @@ -5341,7 +5341,7 @@ init_mac_osx_environment () | |||
| 5341 | } | 5341 | } |
| 5342 | 5342 | ||
| 5343 | strcpy (p, app_bundle_pathname); | 5343 | strcpy (p, app_bundle_pathname); |
| 5344 | strcat (p, "/Contents/Resources/site-lisp"); | 5344 | strcat (p, "/Contents/Resources/leim"); |
| 5345 | if (stat (p, &st) == 0 && (st.st_mode & S_IFMT) == S_IFDIR) | 5345 | if (stat (p, &st) == 0 && (st.st_mode & S_IFMT) == S_IFDIR) |
| 5346 | { | 5346 | { |
| 5347 | if (q[0] != '\0') | 5347 | if (q[0] != '\0') |