bpt/emacs.git
20 years agoResolve CVS conflicts
Miles Bader [Mon, 9 Feb 2004 12:42:04 +0000 (12:42 +0000)]
Resolve CVS conflicts

20 years ago(mac_draw_bitmap): Add overlay_p arg.
Kim F. Storm [Mon, 9 Feb 2004 09:18:17 +0000 (09:18 +0000)]
(mac_draw_bitmap): Add overlay_p arg.
(x_draw_fringe_bitmap):  Handle overlayed fringe bitmaps;
thanks to YAMAMOTO Mitsuharu for advice on how to do this.
Use cursor color for displaying cursor in fringe.

20 years ago*** empty log message ***
Kim F. Storm [Mon, 9 Feb 2004 09:17:22 +0000 (09:17 +0000)]
*** empty log message ***

20 years ago(tar-extract): Fix for the case that a file doesn't have end-of-line.
Kenichi Handa [Mon, 9 Feb 2004 05:48:42 +0000 (05:48 +0000)]
(tar-extract): Fix for the case that a file doesn't have end-of-line.

20 years ago(window-safely-shrinkable-p): Don't change the buffer-list.
Stefan Monnier [Mon, 9 Feb 2004 00:56:25 +0000 (00:56 +0000)]
(window-safely-shrinkable-p): Don't change the buffer-list.
Don't allow shrink if there's a window on our right.

20 years agoAdded extra dependencies in the recompile target needed to cope with
Martin Stjernholm [Mon, 9 Feb 2004 00:49:54 +0000 (00:49 +0000)]
Added extra dependencies in the recompile target needed to cope with
the compile time macro expansions in CC Mode.

20 years ago(prolog-program-name): Use gprolog if available.
Stefan Monnier [Sun, 8 Feb 2004 23:37:11 +0000 (23:37 +0000)]
(prolog-program-name): Use gprolog if available.
(prolog-mode-syntax-table, prolog-mode-abbrev-table, prolog-mode-map):
Bring together declaration and initialization.
(prolog-mode-variables): Don't set the syntax table.
Don't set paragraph-start and comment-indent-function.
Add /*..*/ to the comment regexps.
(prolog-mode-commands): Remove.  Do it during init of prolog-mode-map.
(prolog-mode-map): Don't bind TAB.
(prolog-mode): Set the syntax table.
(prolog-comment-indent): Remove.
(inferior-prolog-mode-map): Initialize in the declaration.
(inferior-prolog-mode-syntax-table)
(inferior-prolog-mode-abbrev-table): New vars.
(inferior-prolog-mode): Derive from comint-mode.
(run-prolog): Avoid switch-to-buffer which can fail in dedicated and
minibuffer windows.

20 years ago(no-fringe-bitmap, undef-fringe-bitmap)
Kim F. Storm [Sun, 8 Feb 2004 23:33:16 +0000 (23:33 +0000)]
(no-fringe-bitmap, undef-fringe-bitmap)
(left-truncation-fringe-bitmap, right-truncation-fringe-bitmap)
(up-arrow-fringe-bitmap, down-arrow-fringe-bitmap)
(continued-line-fringe-bitmap, continuation-line-fringe-bitmap)
(overlay-arrow-fringe-bitmap, top-left-angle-fringe-bitmap)
(top-right-angle-fringe-bitmap, bottom-left-angle-fringe-bitmap)
(bottom-right-angle-fringe-bitmap, left-bracket-fringe-bitmap)
(right-bracket-fringe-bitmap, filled-box-cursor-fringe-bitmap)
(hollow-box-cursor-fringe-bitmap, hollow-square-fringe-bitmap)
(bar-cursor-fringe-bitmap, hbar-cursor-fringe-bitmap)
(empty-line-fringe-bitmap): Define standard fringe bitmaps id's.

20 years ago*** empty log message ***
Kim F. Storm [Sun, 8 Feb 2004 23:32:37 +0000 (23:32 +0000)]
*** empty log message ***

20 years ago(x_draw_fringe_bitmap): Handle overlayed fringe bitmaps.
Kim F. Storm [Sun, 8 Feb 2004 23:21:19 +0000 (23:21 +0000)]
(x_draw_fringe_bitmap): Handle overlayed fringe bitmaps.
Use cursor color for displaying cursor in fringe.
(x_redisplay_interface): Add null handlers for
define_fringe_bitmap and destroy_fringe_bitmap functions.

20 years ago(Voverflow_newline_into_fringe, syms_of_xdisp)
Kim F. Storm [Sun, 8 Feb 2004 23:20:52 +0000 (23:20 +0000)]
(Voverflow_newline_into_fringe, syms_of_xdisp)
(left_bits, right_bits, up_arrow_bits, down_arrow_bits)
(continued_bits, continuation_bits, ov_bits, first_line_bits)
(last_line_bits, filled_box_cursor_bits, hollow_box_cursor_bits)
(bar_cursor_bits, hbar_cursor_bits, zv_bits, hollow_square_bits)
(fringe_bitmaps, draw_fringe_bitmap, draw_row_fringe_bitmaps)
(draw_window_fringes, compute_fringe_widths, update_window_fringes):
Move fringe handling vars and code to new file fringe.c.
(handle_display_prop): Handle left-fringe and right-fringe
display properties; store user fringe bitmaps in iterator.
(move_it_in_display_line_to): Handle cursor in fringe at eob.
(clear_garbaged_frames): Set force_flush_display_p if resized.
(redisplay_window): Redraw fringe bitmaps if not just_this_one_p.
(display_line): Handle cursor in fringe at eob.
(display_line): Set row user fringe bitmaps from iterator.

20 years ago(w32_draw_fringe_bitmap): Copy unadapted code from
Kim F. Storm [Sun, 8 Feb 2004 23:20:23 +0000 (23:20 +0000)]
(w32_draw_fringe_bitmap): Copy unadapted code from
xterm.c to handle overlayed fringe bitmaps and to use cursor color
for displaying cursor in fringe.
(w32_define_fringe_bitmap, w32_destroy_fringe_bitmap): New W32
specific functions to define and destroy fringe bitmaps in fringe_bmp.
(w32_redisplay_interface): Add them to redisplay_interface.
(w32_term_init): Call w32_init_fringe instead of explicitly
defining fringe bitmaps in fringe_bmp array.
(x_delete_display): Call w32_reset_fringes instead of explicitly
destroying fringe bitmaps in fringe_bmp array.

20 years ago(x_draw_fringe_bitmap): Copy unadapted code from
Kim F. Storm [Sun, 8 Feb 2004 23:20:10 +0000 (23:20 +0000)]
(x_draw_fringe_bitmap):  Copy unadapted code from
xterm.c to handle overlayed fringe bitmaps and to use cursor color
for displaying cursor in fringe.
(x_redisplay_interface): Add null handlers for
define_fringe_bitmap and destroy_fringe_bitmap functions.

20 years ago(syms_of_fringe, init_fringe, init_fringe_once):
Kim F. Storm [Sun, 8 Feb 2004 23:19:48 +0000 (23:19 +0000)]
(syms_of_fringe, init_fringe, init_fringe_once):
Add prototypes.

20 years ago(struct frame): New member force_flush_display_p.
Kim F. Storm [Sun, 8 Feb 2004 23:19:37 +0000 (23:19 +0000)]
(struct frame): New member force_flush_display_p.

20 years ago(main) [HAVE_WINDOW_SYSTEM]: Call init_fringe_once,
Kim F. Storm [Sun, 8 Feb 2004 23:19:25 +0000 (23:19 +0000)]
(main) [HAVE_WINDOW_SYSTEM]: Call init_fringe_once,
syms_of_fringe, and init_fringe.

20 years ago(row_equal_p): Compare fringe bitmap faces and overlay
Kim F. Storm [Sun, 8 Feb 2004 23:19:15 +0000 (23:19 +0000)]
(row_equal_p): Compare fringe bitmap faces and overlay
arrows.
(update_frame): Do flush_display if force_flush_display_p to
ensure display (specifically fringes) are updated in a timely
manner when resizing the frame by dragging the mouse.
(update_window_line): Update row if overlay arrow changed.
(scrolling_window): Redraw fringe bitmaps if fringe bitmap faces
or overlay arrow changed.

20 years ago(FRINGE_ID_BITS): New definition for number of
Kim F. Storm [Sun, 8 Feb 2004 23:18:36 +0000 (23:18 +0000)]
(FRINGE_ID_BITS): New definition for number of
bits allocated to hold a fringe number.  Increase number of bits
from 4 to 8 to allow user defined fringe bitmaps.
(struct glyph_row, struct it): New members left_user_fringe_bitmap,
left_user_fringe_face_id, right_user_fringe_bitmap,
right_user_fringe_face_id.
(enum fringe_bitmap_type, struct fringe_bitmap, fringe_bitmaps):
Move to new file fringe.c.
(MAX_FRINGE_BITMAPS): Define here.
(struct draw_fringe_bitmap_params): New members bits, cursor_p,
and overlay_p.  Change member which to int.
(struct redisplay_interface): New members define_fringe_bitmap
and destroy_fringe_bitmap.
(valid_fringe_bitmap_id_p): Add prototype.
(w32_init_fringe, w32_reset_fringes) [WINDOWS_NT]: Add prototypes.

20 years agoNew file. Move original fringe related declarations
Kim F. Storm [Sun, 8 Feb 2004 23:18:16 +0000 (23:18 +0000)]
New file.  Move original fringe related declarations
and code from dispextern.h and xdisp.c here.
Rework code to support user defined fringe bitmaps, redefining
standard bitmaps, ability to overlay user defined bitmap with
overlay arrow bitmap, and add faces to bitmaps.
(Voverflow_newline_into_fringe): Declare here.
(enum fringe_bitmap_align): New enum.
(..._bits): All bitmaps are now defined without bitswapping; that
is now done in init_fringe_once (if necessary).
(standard_bitmaps): New array with specifications for the
standard fringe bitmaps.
(fringe_faces): New array.
(valid_fringe_bitmap_id_p): New function.
(draw_fringe_bitmap_1): Rename from draw_fringe_bitmap.
(draw_fringe_bitmap): New function which draws fringe bitmap,
possibly overlaying bitmap with cursor in right fringe or the
overlay arrow in the left fringe.
(update_window_fringes): Do not handle overlay arrow here.
Compare and copy fringe bitmap faces.
(init_fringe_bitmap): New function.
(Fdefine_fringe_bitmap, Fdestroy_fringe_bitmap): New DEFUNs to
define and destroy user defined fringe bitmaps.
(Fset_fringe_bitmap_face): New DEFUN to set face for a fringe bitmap.
(Ffringe_bitmaps_at_pos): New DEFUN to read current fringe bitmaps.
(syms_of_fringe): New function.  Defsubr new DEFUNs.
DEFVAR_LISP Voverflow_newline_into_fringe.
(init_fringe_once, init_fringe): New functions.
(w32_init_fringe, w32_reset_fringes) [WINDOWS_NT]: New functions.

20 years ago(obj): Add fringe.o.
Kim F. Storm [Sun, 8 Feb 2004 23:17:23 +0000 (23:17 +0000)]
(obj): Add fringe.o.
(fringe.o): New dependencies.

20 years ago*** empty log message ***
Andreas Schwab [Sun, 8 Feb 2004 22:45:30 +0000 (22:45 +0000)]
*** empty log message ***

20 years ago(gnus-summary-increase-score): Fix format string.
Andreas Schwab [Sun, 8 Feb 2004 22:45:11 +0000 (22:45 +0000)]
(gnus-summary-increase-score): Fix format string.

20 years ago(nnlistserv-kk-wash-article): Fix paren nesting.
Andreas Schwab [Sun, 8 Feb 2004 22:44:43 +0000 (22:44 +0000)]
(nnlistserv-kk-wash-article): Fix paren nesting.

20 years ago(with-vc-file): Fix unsafe uses of error.
Andreas Schwab [Sun, 8 Feb 2004 22:42:42 +0000 (22:42 +0000)]
(with-vc-file): Fix unsafe uses of error.
(vc-cancel-version): Likewise.

20 years ago(defstruct): Remove extra format string
Andreas Schwab [Sun, 8 Feb 2004 22:41:39 +0000 (22:41 +0000)]
(defstruct): Remove extra format string
argument.
(cl-struct-setf-expander): Likewise.

20 years ago(ex-mark): Remove extra format string
Andreas Schwab [Sun, 8 Feb 2004 22:41:18 +0000 (22:41 +0000)]
(ex-mark): Remove extra format string
argument.

20 years ago(eshell-hist-word-reference): Fix format
Andreas Schwab [Sun, 8 Feb 2004 22:40:55 +0000 (22:40 +0000)]
(eshell-hist-word-reference): Fix format
string.

20 years ago(eshell-send-invisible): Fix format string.
Andreas Schwab [Sun, 8 Feb 2004 22:40:35 +0000 (22:40 +0000)]
(eshell-send-invisible): Fix format string.

20 years ago(calc-do-prefix-help): Remove extra format
Andreas Schwab [Sun, 8 Feb 2004 22:40:16 +0000 (22:40 +0000)]
(calc-do-prefix-help): Remove extra format
string argument.

20 years ago(calc-convert-time-zones): Fix format string.
Andreas Schwab [Sun, 8 Feb 2004 22:39:49 +0000 (22:39 +0000)]
(calc-convert-time-zones): Fix format string.

20 years ago(calc-get-operator): Remove extra format
Andreas Schwab [Sun, 8 Feb 2004 22:39:28 +0000 (22:39 +0000)]
(calc-get-operator): Remove extra format
string argument.

20 years ago(dired-do-query-replace-regexp): Add missing
Andreas Schwab [Sun, 8 Feb 2004 22:38:51 +0000 (22:38 +0000)]
(dired-do-query-replace-regexp): Add missing
format string argument.

20 years ago(ediff-toggle-read-only): Remove extra format
Andreas Schwab [Sun, 8 Feb 2004 22:38:28 +0000 (22:38 +0000)]
(ediff-toggle-read-only): Remove extra format
string argument.
(ediff-toggle-regexp-match): Likewise.

20 years ago(lm-verify): Remove useless use of
Andreas Schwab [Sun, 8 Feb 2004 22:38:03 +0000 (22:38 +0000)]
(lm-verify): Remove useless use of
format.

20 years ago(vi-mode): Remove extra format string argument.
Andreas Schwab [Sun, 8 Feb 2004 22:37:34 +0000 (22:37 +0000)]
(vi-mode): Remove extra format string argument.
(vi-repeat-last-search): Likewise.
(vi-reverse-last-search): Likewise.
(vi-goto-mark): Likewise.
(vi-reverse-last-find-char): Likewise.
(vi-repeat-last-find-char): Likewise.
(vi-locate-def): Likewise.

20 years ago(format-decode): Fix format string.
Andreas Schwab [Sun, 8 Feb 2004 22:37:02 +0000 (22:37 +0000)]
(format-decode): Fix format string.

20 years ago(hexl-insert-char): Add missing format string argument.
Andreas Schwab [Sun, 8 Feb 2004 22:36:31 +0000 (22:36 +0000)]
(hexl-insert-char): Add missing format string argument.

20 years ago(rmail-get-new-mail): Remove useless use of
Andreas Schwab [Sun, 8 Feb 2004 22:36:05 +0000 (22:36 +0000)]
(rmail-get-new-mail): Remove useless use of
format.

20 years ago(rmail-get-new-mail): Remove extra format string
Andreas Schwab [Sun, 8 Feb 2004 22:33:42 +0000 (22:33 +0000)]
(rmail-get-new-mail): Remove extra format string
arguments.

20 years ago(midnight-delay-set): Remove extra format string
Andreas Schwab [Sun, 8 Feb 2004 22:33:15 +0000 (22:33 +0000)]
(midnight-delay-set): Remove extra format string
argument.

20 years ago(webjump-builtin): Add missing format string
Andreas Schwab [Sun, 8 Feb 2004 22:32:51 +0000 (22:32 +0000)]
(webjump-builtin): Add missing format string
argument.

20 years ago(zone-call): Fix format string.
Andreas Schwab [Sun, 8 Feb 2004 22:32:18 +0000 (22:32 +0000)]
(zone-call): Fix format string.

20 years ago(verify-xscheme-buffer): Fix format strings.
Andreas Schwab [Sun, 8 Feb 2004 22:31:36 +0000 (22:31 +0000)]
(verify-xscheme-buffer): Fix format strings.

20 years ago(tar-parse-octal-integer-safe): Add missing format
Andreas Schwab [Sun, 8 Feb 2004 22:30:54 +0000 (22:30 +0000)]
(tar-parse-octal-integer-safe): Add missing format
string argument.

20 years ago(refer-find-entry-internal): Remove extra
Andreas Schwab [Sun, 8 Feb 2004 22:30:29 +0000 (22:30 +0000)]
(refer-find-entry-internal): Remove extra
format string arguments.

20 years ago(reftex-toc-load-all-files-for-promotion): Remove useless use of
Andreas Schwab [Sun, 8 Feb 2004 22:29:58 +0000 (22:29 +0000)]
(reftex-toc-load-all-files-for-promotion): Remove useless use of
format.  Doc fix.

20 years ago(grep-regexp-alist): Allow :, \t and ( in file names.
Stefan Monnier [Sun, 8 Feb 2004 20:15:45 +0000 (20:15 +0000)]
(grep-regexp-alist): Allow :, \t and ( in file names.

20 years ago(gud-jdb-marker-filter): Add period as optional thousands separator; fixes
Nick Roberts [Sun, 8 Feb 2004 15:30:42 +0000 (15:30 +0000)]
(gud-jdb-marker-filter): Add period as optional thousands separator; fixes
<class>:<line-number> regexp for non-english locales.

20 years ago*** empty log message ***
Nick Roberts [Sun, 8 Feb 2004 15:29:09 +0000 (15:29 +0000)]
*** empty log message ***

20 years agoAnother typo fix.
Andreas Schwab [Sun, 8 Feb 2004 12:23:56 +0000 (12:23 +0000)]
Another typo fix.

20 years ago*** empty log message ***
Andreas Schwab [Sun, 8 Feb 2004 00:39:40 +0000 (00:39 +0000)]
*** empty log message ***

20 years agoFix typo.
Andreas Schwab [Sun, 8 Feb 2004 00:38:50 +0000 (00:38 +0000)]
Fix typo.

20 years agoRevert previous change.
Andreas Schwab [Sat, 7 Feb 2004 23:39:18 +0000 (23:39 +0000)]
Revert previous change.

20 years agomacfns.c, w32fns.c (Fx_change_window_property):
Jan Djärv [Sat, 7 Feb 2004 17:17:20 +0000 (17:17 +0000)]
macfns.c, w32fns.c (Fx_change_window_property):
Make doc string and parameters same as for X version.

20 years ago* positions.texi (Text Lines): Added missing end defun.
Jan Djärv [Sat, 7 Feb 2004 12:50:00 +0000 (12:50 +0000)]
* positions.texi (Text Lines): Added missing end defun.

20 years agoAdd line-number-at-pos.
Kim F. Storm [Sat, 7 Feb 2004 01:03:03 +0000 (01:03 +0000)]
Add line-number-at-pos.

20 years ago(Text Lines): Add line-number-at-pos.
Kim F. Storm [Sat, 7 Feb 2004 01:01:16 +0000 (01:01 +0000)]
(Text Lines): Add line-number-at-pos.

20 years ago*** empty log message ***
Kim F. Storm [Sat, 7 Feb 2004 01:00:22 +0000 (01:00 +0000)]
*** empty log message ***

20 years ago(line-number-at-pos): Rename from line-at-pos.
Kim F. Storm [Sat, 7 Feb 2004 00:37:13 +0000 (00:37 +0000)]
(line-number-at-pos): Rename from line-at-pos.
Uses changed (what-line and vc-annotate-warp-version).

20 years ago(hscroll_window_tree): Position cursor near to right margin in hscrolled
Kim F. Storm [Sat, 7 Feb 2004 00:00:13 +0000 (00:00 +0000)]
(hscroll_window_tree): Position cursor near to right margin in hscrolled
window when jumping to end of line (rather than centering cursor).

20 years ago(wait_reading_process_input): Don't do adaptive read
Kim F. Storm [Fri, 6 Feb 2004 23:52:36 +0000 (23:52 +0000)]
(wait_reading_process_input): Don't do adaptive read
buffering if waiting for a specific process.

20 years ago*** empty log message ***
Stefan Monnier [Fri, 6 Feb 2004 22:36:10 +0000 (22:36 +0000)]
*** empty log message ***

20 years ago(diff-file-regexp-alist, diff-error-regexp-alist)
Stefan Monnier [Fri, 6 Feb 2004 22:05:16 +0000 (22:05 +0000)]
(diff-file-regexp-alist, diff-error-regexp-alist)
(diff-mode): Remove aborted attempt at support for compile.el.
(diff-mode, diff-minor-mode): Avoid obsolete write-contents-hooks.

20 years ago(view-mode-enable): Add view-mode-map to
Andreas Schwab [Fri, 6 Feb 2004 21:41:45 +0000 (21:41 +0000)]
(view-mode-enable): Add view-mode-map to
minor-mode-overriding-map-alist.

20 years ago(Button Properties, Button Buffer Commands): mouse-2 invokes button,
John Paul Wallington [Fri, 6 Feb 2004 09:25:23 +0000 (09:25 +0000)]
(Button Properties, Button Buffer Commands): mouse-2 invokes button,
not down-mouse-1.

20 years ago(Fminibufferp, Fread_from_minibuffer)
Luc Teirlinck [Fri, 6 Feb 2004 04:54:28 +0000 (04:54 +0000)]
(Fminibufferp, Fread_from_minibuffer)
(Fread_minibuffer, Feval_minibuffer)
(Fread_string, Fread_no_blanks_input)
(Fcompleting_read): Doc fixes.
(syms_of_minibuf): Doc fixes for minibuffer-completion-table and
completion-regexp-list.  Define Qcase_fold_search and staticpro it.
(read_minibuf): Fix initial comment.
(Ftry_completion, Fall_completions, Ftest_completion): Bind
case-fold-serach to the value of completion-ignore-case when
checking completion-regexp-list.
(Fdisplay_completion_list): Make it handle arguments that are
symbols.  Doc fix.

20 years ago* xterm.h: Add declaration of free_frame_menubar.
Jan Djärv [Thu, 5 Feb 2004 13:01:13 +0000 (13:01 +0000)]
* xterm.h: Add declaration of free_frame_menubar.

* xfns.c (x_create_bitmap_mask): Removed unused variable depth.
(x_set_menu_bar_lines): Added ! defined USE_GTK for olines.
(Fx_change_window_property): Add declaration of parameters type and
format.  Remove unused variable cons.

20 years ago* xfns.c (x_create_bitmap_mask): Removed unused variable depth.
Jan Djärv [Thu, 5 Feb 2004 12:57:35 +0000 (12:57 +0000)]
* xfns.c (x_create_bitmap_mask): Removed unused variable depth.
(x_set_menu_bar_lines): Added ! defined USE_GTK for olines.
(Fx_change_window_property): Add declaration of parameters type and
format.  Remove unused variable cons.

20 years agoAdd declaration of free_frame_menubar.
Jan Djärv [Thu, 5 Feb 2004 12:56:59 +0000 (12:56 +0000)]
Add declaration of free_frame_menubar.

20 years ago* x-dnd.el (x-dnd-get-local-file-name): Fix byte compiler warning
Jan Djärv [Thu, 5 Feb 2004 11:46:57 +0000 (11:46 +0000)]
* x-dnd.el (x-dnd-get-local-file-name): Fix byte compiler warning

20 years ago(Fset_char_table_range): Fix previous change.
Kenichi Handa [Thu, 5 Feb 2004 04:55:21 +0000 (04:55 +0000)]
(Fset_char_table_range): Fix previous change.

20 years ago(Fchar_after, Fchar_before): Doc fixes.
Luc Teirlinck [Thu, 5 Feb 2004 04:19:44 +0000 (04:19 +0000)]
(Fchar_after, Fchar_before): Doc fixes.

20 years ago* xselect.c: Include stdio,h.
Jan Djärv [Thu, 5 Feb 2004 02:42:14 +0000 (02:42 +0000)]
* xselect.c: Include stdio,h.

20 years ago(Fset_buffer_multibyte): Fix docstring.
Kenichi Handa [Thu, 5 Feb 2004 02:16:36 +0000 (02:16 +0000)]
(Fset_buffer_multibyte): Fix docstring.

20 years ago*** empty log message ***
Stefan Monnier [Thu, 5 Feb 2004 00:19:13 +0000 (00:19 +0000)]
*** empty log message ***

20 years ago(decode_options): Fix handling of alternate editor.
Stefan Monnier [Thu, 5 Feb 2004 00:02:04 +0000 (00:02 +0000)]
(decode_options): Fix handling of alternate editor.

20 years ago(cperl-fill-paragraph): Call fill-paragraph
Stefan Monnier [Wed, 4 Feb 2004 22:55:17 +0000 (22:55 +0000)]
(cperl-fill-paragraph): Call fill-paragraph
with point inside rather than after the paragraph.

20 years ago*** empty log message ***
Stefan Monnier [Wed, 4 Feb 2004 22:19:00 +0000 (22:19 +0000)]
*** empty log message ***

20 years agoSync with Makefile.in changes.
Jason Rumney [Wed, 4 Feb 2004 21:40:05 +0000 (21:40 +0000)]
Sync with Makefile.in changes.

20 years ago*** empty log message ***
Jason Rumney [Wed, 4 Feb 2004 21:39:41 +0000 (21:39 +0000)]
*** empty log message ***

20 years ago(Vmouse_events): Rename from Vmenu_events.
Stefan Monnier [Wed, 4 Feb 2004 20:19:37 +0000 (20:19 +0000)]
(Vmouse_events): Rename from Vmenu_events.
(syms_of_keymap): Add mouse-[45], header-line, and mode-line to it.

20 years ago(smtpmail-try-auth-methods): Pass port-name as defaultport to `netrc-machine'.
Sam Steingold [Wed, 4 Feb 2004 15:35:11 +0000 (15:35 +0000)]
(smtpmail-try-auth-methods): Pass port-name as defaultport to `netrc-machine'.
Do not try authentication when no mechanism is available.

20 years ago*** empty log message ***
Stephen Eglen [Wed, 4 Feb 2004 13:45:38 +0000 (13:45 +0000)]
*** empty log message ***

20 years ago(iswitchb-minibuffer-setup-hook): Update doc string
Stephen Eglen [Wed, 4 Feb 2004 13:40:10 +0000 (13:40 +0000)]
(iswitchb-minibuffer-setup-hook): Update doc string
to show how minibuffer height can be constrained.

20 years ago(auto-mode-alist): Fix .scm, .stk, .ss, .sch entry.
John Paul Wallington [Wed, 4 Feb 2004 08:21:48 +0000 (08:21 +0000)]
(auto-mode-alist): Fix .scm, .stk, .ss, .sch entry.

20 years ago(Text from Minibuffer): Various corrections and clarifications.
Luc Teirlinck [Wed, 4 Feb 2004 03:08:59 +0000 (03:08 +0000)]
(Text from Minibuffer): Various corrections and clarifications.
(Object from Minibuffer): Correct Lisp description of read-minibuffer.
(Minibuffer History): Clarify description of cons values for HISTORY arguments.
(Basic Completion): Various corrections and clarifications.
Add completion-regexp-list.
(Minibuffer Completion): Correct and clarify description of completing-read.
(Completion Commands): Mention partial-completion-mode.
Various other minor changes.
(High-Level Completion): Various corrections and clarifications.
(Reading File Names): Ditto.
(Minibuffer Misc): Ditto.

20 years ago(Fset_char_table_range): Handle charsets ascii,
Kenichi Handa [Wed, 4 Feb 2004 01:20:27 +0000 (01:20 +0000)]
(Fset_char_table_range): Handle charsets ascii,
eight-bit-control, and eight-bit-graphic correctly.

20 years ago* w32select.c (Fw32_set_clipboard_data): Make coding iso2022 safe.
Jason Rumney [Tue, 3 Feb 2004 23:44:47 +0000 (23:44 +0000)]
* w32select.c (Fw32_set_clipboard_data): Make coding iso2022 safe.

* w32fns.c (x_to_w32_font): Likewise.

20 years agoResolve CVS conflicts
Miles Bader [Tue, 3 Feb 2004 21:46:35 +0000 (21:46 +0000)]
Resolve CVS conflicts

20 years agoTypo
Jan Djärv [Tue, 3 Feb 2004 18:15:35 +0000 (18:15 +0000)]
Typo

20 years agowill be => is.
Jan Djärv [Tue, 3 Feb 2004 18:12:43 +0000 (18:12 +0000)]
will be => is.

20 years agoMinor addition
Jan Djärv [Tue, 3 Feb 2004 18:09:55 +0000 (18:09 +0000)]
Minor addition

20 years ago* frames.texi (Drag and drop): New section.
Jan Djärv [Tue, 3 Feb 2004 18:02:45 +0000 (18:02 +0000)]
* frames.texi (Drag and drop): New section.

20 years agoAdd note about drag and drop support.
Jan Djärv [Tue, 3 Feb 2004 17:09:02 +0000 (17:09 +0000)]
Add note about drag and drop support.

20 years agoFix typo.
Jan Djärv [Tue, 3 Feb 2004 17:00:50 +0000 (17:00 +0000)]
Fix typo.

20 years ago* x-dnd.el: New file for drag and drop.
Jan Djärv [Tue, 3 Feb 2004 16:55:30 +0000 (16:55 +0000)]
* x-dnd.el: New file for drag and drop.

* term/x-win.el: require x-dnd, set after-make-frame-functions
to x-dnd-init-frame, let x-dnd-handle-drag-n-drop-event handle
drag-n-drop event.

* dired.el (dired-dnd-test-function, dired-dnd-popup-notice)
(dired-dnd-do-ask-action, dired-dnd-handle-local-file)
(dired-dnd-handle-file): New functions for drag and drop support.
(dired-mode): Initialize drag and drop if x-dnd present.

20 years agoAdded C support for drag and drop (xterm.h, xterm.c, xfns.c and xselect.c)
Jan Djärv [Tue, 3 Feb 2004 16:36:29 +0000 (16:36 +0000)]
Added C support for drag and drop (xterm.h, xterm.c, xfns.c and xselect.c)

20 years ago* xfns.c (x-send-client-message): Moved to xselect.c
Jan Djärv [Tue, 3 Feb 2004 16:35:38 +0000 (16:35 +0000)]
* xfns.c (x-send-client-message): Moved to xselect.c
(Fx_change_window_property): Add optional arguments TYPE, FORMAT and
OUTER_P.
(Fx_window_property): Add optional arguments TYPE, SOURCE, DELETE_P,
VECTOR_RET_P.  Handle AnyPropertyType.  Call x_property_data_to_lisp
if vector_ret_p is true.
(syms_of_xfns): Sx_send_client_message moved to xselect.c.

20 years ago* xselect.c: Include termhooks.h and X11/Xproto.h
Jan Djärv [Tue, 3 Feb 2004 16:34:57 +0000 (16:34 +0000)]
* xselect.c: Include termhooks.h and X11/Xproto.h
(x_check_property_data, x_fill_property_data)
(x_property_data_to_lisp, mouse_position_for_drop)
(Fx_get_atom_name, x_handle_dnd_message): New functions for DND support.
(Fx_send_client_event): Moved here from xfns.c.
(syms_of_xselect): Add Sx_get_atom_name and Sx_send_client_message.

20 years ago* xterm.c (handle_one_xevent): Call x_handle_dnd_message for
Jan Djärv [Tue, 3 Feb 2004 16:34:26 +0000 (16:34 +0000)]
* xterm.c (handle_one_xevent): Call x_handle_dnd_message for
ClientMessages.