1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-01-07 12:20:39 -08:00
Commit graph

64575 commits

Author SHA1 Message Date
Kim F. Storm
df05d913fa *** empty log message *** 2006-06-16 11:42:53 +00:00
YAMAMOTO Mitsuharu
23666aa8ec (Mac Input): Minor update. 2006-06-16 08:33:41 +00:00
YAMAMOTO Mitsuharu
aa2f234a42 *** empty log message *** 2006-06-16 08:09:09 +00:00
YAMAMOTO Mitsuharu
b4c515960f (do_app_resume, do_app_suspend): Remove functions.
(mac_tsm_resume, mac_tsm_suspend) [USE_MAC_TSM]: New functions.
(mac_handle_window_event, XTread_socket) [USE_MAC_TSM]: Use them.
(Vmac_ts_script_language_on_focus) [USE_MAC_TSM]: New variable.
(syms_of_macterm) [USE_MAC_TSM]: Defvar it.
(saved_ts_language, saved_ts_component) [USE_MAC_TSM]: New variables.
(mac_initialize_display_info) [MAC_OSX]: Use Quartz Display
Services functions to get size of main display in pixels.
2006-06-16 08:08:59 +00:00
YAMAMOTO Mitsuharu
e2da5e4212 (Fx_display_mm_height, Fx_display_mm_width)
[MAC_OS_X_VERSION_MAX_ALLOWED >= 1030]: Use CGDisplayScreenSize.
2006-06-16 08:08:49 +00:00
YAMAMOTO Mitsuharu
f4d07c63ec (Mac Input): Add description of mac-function-modifier.
Now Unicode keyboard layouts work.
2006-06-16 08:08:28 +00:00
YAMAMOTO Mitsuharu
05d3aeb016 (mac-text-encoding-ascii): New constant.
(mac-utxt-to-string): Use it.
(mac-ts-update-active-input-area): Use mac-ae-number.
2006-06-16 08:07:59 +00:00
YAMAMOTO Mitsuharu
2d4a5c5044 (all): Add mac-ts-script-language-on-focus. 2006-06-16 08:07:51 +00:00
Bill Wohler
d9044cd65d (mh-index-new-folder): Use -2 suffix instead of <2> suffix for folder
names, as <> are illegal filename characters on Windows (closes SF
#1507002).
2006-06-16 00:54:41 +00:00
Bill Wohler
fbf62741d6 (mh-send-uses-spost): New variable.
(mh-send-letter): Do not use -msgid and -mime if mh-send-uses-spost is
t (closes SF #1486726).
2006-06-16 00:48:04 +00:00
Dan Nicolaescu
2f182d8d51 (term-handle-scroll, term-delete-lines)
(term-insert-lines): Fix off by one errors.
2006-06-15 22:58:10 +00:00
Michael Albinus
8a7269eb1b * net/tramp.el (tramp-touch): Use UTC to express time. 2006-06-15 21:55:39 +00:00
Chong Yidong
c43d75391a * mail/sendmail.el (mail-send): Search explicitly for
mail-header-separator when checking for corrupted header lines.
2006-06-15 18:34:26 +00:00
Nick Roberts
3e0b9c08a0 (gdb-same-frame): New option.
(gud-old-arrow, gdb-frame-begin, gdb-printing): New variables.
(gdb-init-1): Initialise them.
(gdb-starting): Reset gdb-printing
(gdb-starting): Save value of gud-overlay-arrow-position.
(gdb-frame-begin): Set gdb-frame-begin, gdb-printing.
(gdb-stopped): Don't look for source if calling procedure e.g "p a ()".
Use gdb-*-gdb-buffer conditionally on gdb-same-frame.
(gdb-frame-gdb-buffer): Keep menu bar, tool bar for GUD buffer.
2006-06-15 00:57:53 +00:00
Nick Roberts
e86a3316d1 *** empty log message *** 2006-06-15 00:57:22 +00:00
Stefan Monnier
608f267107 (cvs-retrieve-revision): Use decode-coding-inserted-region. 2006-06-14 15:38:10 +00:00
Chong Yidong
633e63caff * xdisp.c (back_to_previous_visible_line_start): Reset
it->continuation_lines_width.
2006-06-14 14:29:47 +00:00
Thien-Thi Nguyen
761b9fd243 Delete existing data; add a new entry. 2006-06-14 10:42:25 +00:00
Richard M. Stallman
cac9d7667c *** empty log message *** 2006-06-13 23:19:49 +00:00
Richard M. Stallman
873759d5d8 (Fdefconst): Mark variable as risky. 2006-06-13 23:09:17 +00:00
Richard M. Stallman
a4feb1448a (Fcall_process): Doc fix. 2006-06-13 23:08:39 +00:00
Richard M. Stallman
c32de52a4f (adjust_window_trailing_edge): Don't break out of the loop
because there's no next window, if there are parallel windows.
Do break out when WINDOW is nil.
2006-06-13 23:07:56 +00:00
Kim F. Storm
946a79d0f7 (IT_STACK_SIZE): New macro specifying size of
iterator stack (instead of hardcoded number).  Increase from 2 to 4
to make room for propertized overlay strings before and after a
display string, image or composition.
(struct it): Add image_id and method members to iterator stack.
2006-06-13 22:45:21 +00:00
Kim F. Storm
79595fa45e (init_from_display_pos): Don't set it->method and
overlay_string_index after pop_it.  Add asserts.
(handle_stop): Look for overlay strings around a display string,
image, or composition.  Handle properties on those strings.
(next_overlay_string): Don't set string, pos or method after pop_it.
(get_overlay_strings_1): Split from get_overlay_strings; don't
modify it if no overlay strings are found.
(get_overlay_strings): Use get_overlay_strings_1.  Always set
it->string and it->method.
(push_it): Push it->image_id and it->method.  Push it->object
instead of it->string if method is GET_FROM_IMAGE.
(pop_it): Pop it->image_id and it->method.  Ppo it->object
instead of it->string if method is GET_FROM_IMAGE.
Reset it->current.string_pos if popped it->string is nil.
(reseat_1): Remove comment dated 19 May 2003.  It expressed doubt
whether a given change was correct; but the change is correct.
Clear it->string_from_display_prop_p.
(set_iterator_to_next): Rely on it->method and it->image_id from
iterator stack, instead of setting them explicitly after pop_it.
2006-06-13 22:45:00 +00:00
Kim F. Storm
1bb32610a8 *** empty log message *** 2006-06-13 22:44:44 +00:00
Kim F. Storm
fdefc4d152 (Waiting): Negative arg to sit-for forces
redisplay even if input is pending.
2006-06-13 22:18:38 +00:00
Kim F. Storm
5781332691 (Forcing Redisplay): Use (sit-for -1) to force a redisplay.
Remove incorrect example of binding redisplay-dont-pause
around (sit-for 0).
2006-06-13 22:18:06 +00:00
Kim F. Storm
f222369e0a (sit_for): Undo 2006-06-01 change. Instead, a
negative time forces redisplay even when input is available.
(Fsit_for): Doc fix.
2006-06-13 22:06:22 +00:00
Kim F. Storm
bae1ed2965 *** empty log message *** 2006-06-13 22:06:10 +00:00
Chong Yidong
905575123f 2006-06-13 Martin J. Reed <mjreed@essex.ac.uk> (tiny change)
* net/ldap.el (ldap-ldapsearch-args): Default to SASL search.
	(ldap-search-internal): Keep error messages, and a regexp fix.
2006-06-13 20:31:32 +00:00
Richard M. Stallman
c74849812b (Forcing Redisplay): Clarify previous change. 2006-06-13 14:02:21 +00:00
Romain Francoise
d211faa23c (Forcing Redisplay): Fix typo. 2006-06-13 06:44:01 +00:00
Romain Francoise
0dc9e94e8d Fix typos. 2006-06-13 06:41:55 +00:00
Kim F. Storm
b91068886c New preemptive redisplay. 2006-06-12 22:44:25 +00:00
Kim F. Storm
a9d2c44760 (Forcing Redisplay): Add redisplay-preemption-period. 2006-06-12 22:37:31 +00:00
Kim F. Storm
8eb2b87fc1 *** empty log message *** 2006-06-12 22:37:17 +00:00
Kim F. Storm
d012c62b91 Modify preemptive redisplay to be based on periodic checks for input.
(PERIODIC_PREEMPTION_CHECKING): Define to 1 iff EMACS_HAS_USECS.
(Vredisplay_preemption_period): New variable.
(syms_of_display): DEFVAR_LISP and initialize it.
(preemption_period, preemption_next_check): New variables.
(update_frame, update_single_window): Initialize them based on
Vredisplay_preemption_period if !force_p.
(update_window, update_frame_1): Use them to determine when to
check for input.
2006-06-12 22:32:47 +00:00
Thien-Thi Nguyen
15a8ea0ca6 (hack-local-variables-confirm):
Display string value using its printed representation.
2006-06-12 07:52:05 +00:00
Chong Yidong
6b519504c3 * server.el (server-edit): No-op if no server buffers exist. 2006-06-11 18:59:31 +00:00
Robert J. Chassell
11f8928945 *** empty log message *** 2006-06-11 18:18:24 +00:00
Robert J. Chassell
73aee91dab Including `pages-directory-address-mode' results in the message
"Buffer in which pages were found is deleted"
2006-06-11 17:38:30 +00:00
Thien-Thi Nguyen
c2f9f7fdf1 Mention that `enable-local-variables' can have value :all, as well. 2006-06-11 14:53:37 +00:00
Kim F. Storm
7225c342da *** empty log message *** 2006-06-10 21:23:01 +00:00
Luc Teirlinck
503b5e1c90 (Coding Conventions): Add `@end itemize'. 2006-06-10 16:21:12 +00:00
Carsten Dominik
13633ef2bd New keys for clocking work, Changed keys for export. 2006-06-10 14:17:55 +00:00
Carsten Dominik
91d85d5fd8 (Progress logging): New section. 2006-06-10 14:16:17 +00:00
Carsten Dominik
23643307e0 *** empty log message *** 2006-06-10 14:16:04 +00:00
Carsten Dominik
edd2130435 (org-agenda-mode-map): Add bindings for clocking
functions.
(org-agenda-clock-in, org-check-running-clock)
(org-clock-out-if-current, org-remove-clock-overlays)
(org-put-clock-overlay): New functions.
(org-clock-marker, org-clock-file-total-minutes)
(org-clock-overlays): New variables
(org-clock-display, org-clock-sum, org-clock-cancel)
(org-clock-out, org-clock-in): New commands.
(org-export): New function.
(org-emph-re): New constant.
(org-set-emph-re, org-do-emphasis-faces): New functions.
(org-emphasis-regexp-components, org-emphasis-alist): New options.
(org-set-font-lock-defaults): Call `org-do-emphasis-faces'.
(org-export-html-convert-emphasize): Use the configurable
emphasis.
(org-cleaned-string-for-export): Make multiline emphasis visible
to the exporter.  New optional argument PARAMETERS.
(org-export-as-html): Specify :emph-multiline parameter to
`org-cleaned-string-for-export'.
2006-06-10 14:15:25 +00:00
Richard M. Stallman
9e362b84e9 *** empty log message *** 2006-06-10 10:52:27 +00:00
Richard M. Stallman
27c82bfe96 (Recognize Coding): Clarify previous change. 2006-06-10 10:42:32 +00:00