]> git.eshelyaron.com Git - emacs.git/log
emacs.git
21 years ago(struct frame): Rename members height to text_lines,
Kim F. Storm [Sat, 24 May 2003 21:58:07 +0000 (21:58 +0000)]
(struct frame): Rename members height to text_lines,
width to text_cols, window_height to total_lines, window_width to
total_cols, new_height to new_text_lines, new_width to
new_text_cols.  All uses changed.
(struct frame): New members which consolidate common members of
x_output, w32_output, and mac_output structures: left_pos,
top_pos, pixel_height, pixel_width, x_pixels_diff, y_pixels_diff,
win_gravity, size_hint_flags, border_width, internal_border_width,
line_height, fringe_cols, left_fringe_width, right_fringe_width,
want_fullscreen.  All uses changed.
(struct frame): New member column_width contaning the canonical
column width, analogue to line_height.  All uses changed.
(struct frame): Rename members scroll_bar_pixel_width to
config_scroll_bar_width, and scroll_bar_cols to
config_scroll_bar_cols.  All uses changed.
(struct frame): New member scroll_bar_actual_width which
consolidates and renames the vertical_scroll_bar_extra member of
x_output, w32_output, and mac_output structures.  All uses changed.
(FRAME_PIXEL_HEIGHT): Renamed from PIXEL_HEIGHT and moved
from x/w32/macterm.h files.  All uses changed.  Also change code
which referred to f->output_data...->pixel_height.
(FRAME_PIXEL_WIDTH): Renamed from PIXEL_WIDTH and moved
from x/w32/macterm.h files.  All uses changed.  Also change code
which referred to f->output_data...->pixel_width.
(FRAME_LINES): Renamed from FRAME_HEIGHT.  All uses changed.
Also change code which referred to f->height.
(FRAME_COLS): Renamed from FRAME_WIDTH.  All uses changed.
Also change code which referred to f->width.
(FRAME_NEW_HEIGHT, FRAME_NEW_WIDTH): Remove macros; change uses
to update new_text_lines and new_text_cols members directly.
(FRAME_CONFIG_SCROLL_BAR_WIDTH): Renamed from
FRAME_SCROLL_BAR_PIXEL_WIDTH.  All uses changed.
(FRAME_CONFIG_SCROLL_BAR_COLS): Renamed from
FRAME_SCROLL_BAR_COLS.  All uses changed.
(FRAME_LEFT_SCROLL_BAR_COLS, FRAME_RIGHT_SCROLL_BAR_COLS):
Renamed from FRAME_LEFT_SCROLL_BAR_WIDTH and
FRAME_RIGHT_SCROLL_BAR_WIDTH, resp.  All uses changed.
(FRAME_SCROLL_BAR_AREA_WIDTH, FRAME_LEFT_SCROLL_BAR_AREA_WIDTH)
(FRAME_RIGHT_SCROLL_BAR_AREA_WIDTH): New macros.
(FRAME_TOTAL_COLS): Renamed from FRAME_WINDOW_WIDTH.
(SET_FRAME_COLS): Renamed from SET_FRAME_WIDTH.
(FRAME_TOTAL_COLS_ARG): Renamed from FRAME_WINDOW_WIDTH_ARG.
(WINDOW_VERTICAL_SCROLL_BAR_COLUMN): Remove unused macro.
(WINDOW_VERTICAL_SCROLL_BAR_HEIGHT): Remove unused macro.
(FRAME_LINE_HEIGHT): Renamed from CANON_Y_UNIT.  Unconditionally
return line_height member (it now has proper value also for
non-window frames).
(FRAME_COLUMN_WIDTH): Renamed from CANON_X_UNIT.  Unconditionally
return new column_width member (rather than the default font width).
(FRAME_FRINGE_COLS, FRAME_LEFT_FRINGE_WIDTH)
(FRAME_RIGHT_FRINGE_WIDTH): Renamed from FRAME_X_... and moved
from x/w32/macterm.h files.  Unconditionally return corresponding
member of frame structure (they now have proper values also for
non-window frames).
(FRAME_TOTAL_FRINGE_WIDTH): Renamed from FRAME_FRINGE_WIDTH.
Calculate return value from left and right widths.
(FRAME_INTERNAL_BORDER_WIDTH): Unconditionally return
internal_border_width member (has proper value for non-window frame).
(FRAME_PIXEL_X_FROM_CANON_X): Renamed from PIXEL_X_FROM_CANON_X.
(FRAME_PIXEL_Y_FROM_CANON_Y): Renamed from PIXEL_Y_FROM_CANON_Y.
(FRAME_CANON_X_FROM_PIXEL_X): Renamed from CANON_X_FROM_PIXEL_X.
(FRAME_CANON_Y_FROM_PIXEL_Y): Renamed from CANON_Y_FROM_PIXEL_Y.
(FRAME_LINE_TO_PIXEL_Y): Renamed from CHAR_TO_PIXEL_ROW,
consolidated from xterm.h, macterm.h, and w32term.h.
(FRAME_COL_TO_PIXEL_X): Renamed from CHAR_TO_PIXEL_COL,
consolidated from xterm.h, macterm.h, and w32term.h.
(FRAME_TEXT_COLS_TO_PIXEL_WIDTH): Renamed from
CHAR_TO_PIXEL_WIDTH consolidated from x/mac/w32term.h.
(FRAME_TEXT_LINES_TO_PIXEL_HEIGHT): Renamed from
CHAR_TO_PIXEL_HEIGHT consolidated from x/mac/w32term.h.
(FRAME_PIXEL_Y_TO_LINE): Renamed from PIXEL_TO_CHAR_ROW
consolidated from x/mac/w32term.h.
(FRAME_PIXEL_X_TO_COL): Renamed from PIXEL_TO_CHAR_COL
consolidated from x/mac/w32term.h.
(FRAME_PIXEL_WIDTH_TO_TEXT_COLS): Renamed from
PIXEL_TO_CHAR_WIDTH consolidated from x/mac/w32term.h.
(FRAME_PIXEL_HEIGHT_TO_TEXT_LINES): Renamed from
PIXEL_TO_CHAR_HEIGHT consolidated from x/mac/w32term.h.

21 years agoMake (many) trivial substitutions for renamed and
Kim F. Storm [Sat, 24 May 2003 21:57:45 +0000 (21:57 +0000)]
Make (many) trivial substitutions for renamed and
new macros in dispextern.h, frame.h and window.h.
(make_frame): Initialize left_fringe_width, right_fringe_width,
fringe_cols, scroll_bar_actual_width, border_width,
internal_border_width, column_width, line_height, x_pixels_diff,
y_pixels_diff, want_fullscreen, size_hint_flags, and win_gravity
members with values suitable for a non-window frames.

21 years agoMake (many) trivial substitutions for renamed and
Kim F. Storm [Sat, 24 May 2003 21:57:05 +0000 (21:57 +0000)]
Make (many) trivial substitutions for renamed and
new macros in dispextern.h, frame.h and window.h.
(mode_line_string): No need to adjust width for mode lines, as it
is already adjusted by the caller.
(marginal_area_string): Handle fringes inside/outside margins.

21 years ago(struct glyph_matrix): Rename members window_left_x
Kim F. Storm [Sat, 24 May 2003 21:56:19 +0000 (21:56 +0000)]
(struct glyph_matrix): Rename members window_left_x
to window_left_col, window_top_y to window_top_line. All uses
changed.
(FRAME_INTERNAL_BORDER_WIDTH_SAFE): Remove macro; can now safely
use FRAME_INTERNAL_BORDER_WIDTH macro instead as
internal_border_width is now set to 0 for non-window frames.
(WINDOW_DISPLAY_PIXEL_WIDTH, WINDOW_DISPLAY_PIXEL_HEIGHT)
(WINDOW_DISPLAY_MODE_LINE_HEIGHT, WINDOW_DISPLAY_HEADER_LINE_HEIGHT)
(WINDOW_DISPLAY_HEIGHT_NO_MODE_LINE, WINDOW_DISPLAY_TEXT_HEIGHT)
(WINDOW_DISPLAY_LEFT_EDGE_PIXEL_X, WINDOW_DISPLAY_RIGHT_EDGE_PIXEL_X)
(WINDOW_DISPLAY_TOP_EDGE_PIXEL_Y, WINDOW_DISPLAY_BOTTOM_EDGE_PIXEL_Y)
(WINDOW_TO_FRAME_PIXEL_X, WINDOW_TO_FRAME_PIXEL_Y)
(FRAME_TO_WINDOW_PIXEL_X, FRAME_TO_WINDOW_PIXEL_Y)
(WINDOW_DISPLAY_LEFT_AREA_PIXEL_WIDTH)
(WINDOW_DISPLAY_RIGHT_AREA_PIXEL_WIDTH, WINDOW_WANTS_MODELINE_P):
Move to window.h and renamed [see window.h changes].
(WINDOW_AREA_TO_FRAME_PIXEL_X, WINDOW_AREA_PIXEL_WIDTH)
(WINDOW_DISPLAY_TEXT_AREA_PIXEL_WIDTH): Remove macros.
(WINDOW_WANTS_MODELINE_P, WINDOW_WANTS_HEADER_LINE_P): Use
WINDOW_TOTAL_LINES.
(frame_update_line_height): Remove prototype.

21 years ago(struct buffer): Rename members measured in columns:
Kim F. Storm [Sat, 24 May 2003 21:55:09 +0000 (21:55 +0000)]
(struct buffer): Rename members measured in columns:
left_margin_width to left_margin_cols, right_margin_width to
right_margin_cols.  All uses changed.
New members left_fringe_width, right_fringe_width,
fringes_outside_margins for per-buffer fringe settings.
New members scroll_bar_width and vertical_scroll_bar_type for
per-buffer scroll bar settings.

21 years ago(init_buffer_once): Set buffer_defaults and
Kim F. Storm [Sat, 24 May 2003 21:54:43 +0000 (21:54 +0000)]
(init_buffer_once): Set buffer_defaults and
buffer_local_flags for new buffer-local variables
left_fringe_width, right_fringe_width, fringes_outside_margins,
scroll_bar_width, and vertical_scroll_bar_type.
(syms_of_buffer): Defvar_per_buffer them, and defvar_lisp_nopro
default-* variables for them.

21 years agoMajor changes for fringes and oter window elements.
Kim F. Storm [Sat, 24 May 2003 21:52:57 +0000 (21:52 +0000)]
Major changes for fringes and oter window elements.

21 years ago*** empty log message ***
Andreas Schwab [Sat, 24 May 2003 20:18:13 +0000 (20:18 +0000)]
*** empty log message ***

21 years ago(insert-directory): Preserve CR in a file name.
Andreas Schwab [Sat, 24 May 2003 20:16:33 +0000 (20:16 +0000)]
(insert-directory): Preserve CR in a file name.

21 years ago(find_safe_codings): Fix last change.
Andreas Schwab [Sat, 24 May 2003 20:11:55 +0000 (20:11 +0000)]
(find_safe_codings): Fix last change.

21 years agoRegenerated.
Andreas Schwab [Sat, 24 May 2003 19:31:42 +0000 (19:31 +0000)]
Regenerated.

21 years ago(AH_BOTTOM) [MAC_OSX]: Do not redefine bcopy,
Andreas Schwab [Sat, 24 May 2003 19:28:34 +0000 (19:28 +0000)]
(AH_BOTTOM) [MAC_OSX]: Do not redefine bcopy,
bzero, and bcmp.

21 years ago(iconify-or-deiconify-frame): Move to frame.el.
Stefan Monnier [Sat, 24 May 2003 16:22:20 +0000 (16:22 +0000)]
(iconify-or-deiconify-frame): Move to frame.el.

21 years ago*** empty log message ***
Stefan Monnier [Sat, 24 May 2003 16:16:34 +0000 (16:16 +0000)]
*** empty log message ***

21 years ago(iconify-or-deiconify-frame): Move to frame.el.
Stefan Monnier [Sat, 24 May 2003 16:13:06 +0000 (16:13 +0000)]
(iconify-or-deiconify-frame): Move to frame.el.
Turn on mouse-wheel support by default.

21 years ago(iconify-or-deiconify-frame): Move from term/x-win.el.
Stefan Monnier [Sat, 24 May 2003 16:11:17 +0000 (16:11 +0000)]
(iconify-or-deiconify-frame): Move from term/x-win.el.

21 years ago(read_key_sequence): Adjust fkey and keytran when dropping `down' events.
Stefan Monnier [Sat, 24 May 2003 14:52:10 +0000 (14:52 +0000)]
(read_key_sequence): Adjust fkey and keytran when dropping `down' events.

21 years agoVersion 2.0.34 (of Tramp) released.
Kai Großjohann [Sat, 24 May 2003 14:10:53 +0000 (14:10 +0000)]
Version 2.0.34 (of Tramp) released.

21 years agoVersion 2.0.34 (of Tramp) released.
Kai Großjohann [Sat, 24 May 2003 14:10:15 +0000 (14:10 +0000)]
Version 2.0.34 (of Tramp) released.
(tramp-handle-file-symlink-p): If target of symlink is absolute,
return a Tramp filename.  (Ie, return "/user@host:/target" instead
of "/target".)
(tramp-handle-file-truename): Deal with new return value from
`file-symlink-p'.
(tramp-handle-expand-file-name): Make default method explicit in
file name.
(tramp-unified-filenames): Move to an earlier spot in the file.
(top-level): If tramp-unified-filenames is set and we're running
on XEmacs, load tramp-efs.
(tramp-wait-for-shell-prompt, tramp-barf-if-no-shell-prompt): New
functions, used by tramp-send-command-internal.
(tramp-open-connection-setup-interactive-shell): Simplify using
`tramp-send-command-internal'.
(tramp-send-command-internal): New function.
(tramp-methods): New entries "remsh" and "remcp" are like "rsh"
and "rcp" but invoke "remsh" instead of "rsh".  This is useful on
Cray systems, for instance.  Unify tramp-rsh-program,
tramp-telnet-program, tramp-su-program into tramp-login-program.
Likewise with tramp-login-args, tramp-copy-program,
tramp-copy-args, tramp-copy-keep-date-arg.  Users changed.  New
method plink1; like plink but pass "-1" to force protocol version
1.
(tramp-default-method): Use plink as the default on machines where
the plink program is present.
(tramp-completion-file-name-handler): Add safe-magic property.
(tramp-shell-prompt-pattern): Allow ANSI escapes at
end of prompt.  (ANSI escapes elsewhere in the prompt are
recognized properly already.)

21 years ago(x_window): Fix typo.
Thien-Thi Nguyen [Sat, 24 May 2003 08:58:03 +0000 (08:58 +0000)]
(x_window): Fix typo.

21 years agoUse `push' and replace `regi-pos' by equivalents.
Stefan Monnier [Sat, 24 May 2003 00:34:15 +0000 (00:34 +0000)]
Use `push' and replace `regi-pos' by equivalents.
(sc-emacs-features): Remove.  Use better tests instead.
(sc-minor-mode): Use define-minor-mode.
(sc-mode-string, sc-set-mode-string): Remove.
Use a better modeline expression instead.
(sc-completing-read, sc-read-string, sc-submatch, sc-member)
(sc-string-text): Remove those compatibility functions.

21 years ago(display_mode_element): Increase max depth.
Stefan Monnier [Fri, 23 May 2003 23:32:55 +0000 (23:32 +0000)]
(display_mode_element): Increase max depth.
Simplify the error handling code.  Use a different error string
for the case where we hit the depth limit.

21 years ago(gdba): Accommodate Fortran programs.
Nick Roberts [Fri, 23 May 2003 22:38:15 +0000 (22:38 +0000)]
(gdba): Accommodate Fortran programs.
(gud-gdba-command-name): Use -noasync in all cases (as Fortran
seems to require it also).
(gdb-source-info): Parse correctly when compilation directory
specifies host also (IRIX).

21 years ago*** empty log message ***
Nick Roberts [Fri, 23 May 2003 22:35:40 +0000 (22:35 +0000)]
*** empty log message ***

21 years ago(cvs-temp-buffer): Kill running process in displayed buffers.
Stefan Monnier [Fri, 23 May 2003 19:31:02 +0000 (19:31 +0000)]
(cvs-temp-buffer): Kill running process in displayed buffers.
(cvs-make-cvs-buffer): Fix up format of the header.

21 years ago*** empty log message ***
Stefan Monnier [Fri, 23 May 2003 18:51:34 +0000 (18:51 +0000)]
*** empty log message ***

21 years ago(define-ccl-program): Doc fix.
Dave Love [Fri, 23 May 2003 18:15:45 +0000 (18:15 +0000)]
(define-ccl-program): Doc fix.

21 years ago(Vfundamental_mode_abbrev_table): Don't declare.
Stefan Monnier [Fri, 23 May 2003 18:14:36 +0000 (18:14 +0000)]
(Vfundamental_mode_abbrev_table): Don't declare.

21 years ago(reset_buffer_local_variables): Remove redundant setting.
Stefan Monnier [Fri, 23 May 2003 18:11:50 +0000 (18:11 +0000)]
(reset_buffer_local_variables): Remove redundant setting.

21 years ago#
André Spiegel [Fri, 23 May 2003 17:58:46 +0000 (17:58 +0000)]
#

21 years ago(vc-cvs-checkout): Don't leave the branch when REV is t.
André Spiegel [Fri, 23 May 2003 17:57:29 +0000 (17:57 +0000)]
(vc-cvs-checkout): Don't leave the branch when REV is t.
From Don Provan <dprovan@bivio.net>.

21 years ago(perl-font-lock-syntactic-keywords): Match more cases of /.../ patterns.
Stefan Monnier [Fri, 23 May 2003 15:49:16 +0000 (15:49 +0000)]
(perl-font-lock-syntactic-keywords): Match more cases of /.../ patterns.

21 years ago*** empty log message ***
Richard M. Stallman [Fri, 23 May 2003 13:35:36 +0000 (13:35 +0000)]
*** empty log message ***

21 years agoRemove unnecessary entry.
Lute Kamstra [Fri, 23 May 2003 13:03:48 +0000 (13:03 +0000)]
Remove unnecessary entry.

21 years ago(forms--mode-commands1): Bind \t, not `tab'.
Richard M. Stallman [Fri, 23 May 2003 12:48:06 +0000 (12:48 +0000)]
(forms--mode-commands1): Bind \t, not `tab'.
(forms--mode-commands): Don't bind \t in the maps where
we call forms--mode-commands1.

21 years ago(repunctuate-sentences): New function.
Richard M. Stallman [Fri, 23 May 2003 12:46:38 +0000 (12:46 +0000)]
(repunctuate-sentences): New function.

21 years ago(archive-lzh-summarize): Calculate correct total
Richard M. Stallman [Fri, 23 May 2003 12:45:49 +0000 (12:45 +0000)]
(archive-lzh-summarize): Calculate correct total
header size for LZH level 1 header.

21 years ago(checkdoc-file-comments-engine): Use
Lute Kamstra [Fri, 23 May 2003 10:10:24 +0000 (10:10 +0000)]
(checkdoc-file-comments-engine): Use
`lm-commentary-end' to find the end of the commentary section.

21 years agoMake the description of the library more
Lute Kamstra [Fri, 23 May 2003 10:08:34 +0000 (10:08 +0000)]
Make the description of the library more
accurate.
(lm-any-header): New user option.
(lm-section-start): New function; rewrite of `lm-section-mark'.
(lm-section-mark): Make alias of `lm-section-start'.
(lm-section-end): New function.
(lm-code-start): New function; rewrite of `lm-code-mark'.
(lm-code-mark): Make alias of `lm-code-start'.
(lm-commentary-start): New function; rewrite of
`lm-commentary-mark'.
(lm-commentary-mark): Make alias of `lm-commentary-start'.
(lm-commentary-end): New function.
(lm-history-start): New function; rewrite of `lm-history-mark'.
(lm-history-mark): Make alias of `lm-history-start'.
(lm-commentary): Use `lm-commentary-end' to find the end of the
commentary section.

21 years agoFix mismatched @def/@end pairs (inadvertently nested?).
Miles Bader [Fri, 23 May 2003 01:22:32 +0000 (01:22 +0000)]
Fix mismatched @def/@end pairs (inadvertently nested?).

21 years ago(define-skeleton): Use the `no-self-insert' property.
Stefan Monnier [Fri, 23 May 2003 00:59:12 +0000 (00:59 +0000)]
(define-skeleton): Use the `no-self-insert' property.
(skeleton-proxy-new): Fix docstring.  Remove broken interactive spec.
Rely on use `no-self-insert' rather than `skeleton-abbrev-cleanup'.
(skeleton-internal-1): Add a `recursive' argument.
(skeleton-internal-list): Use it to propagate `recursive'.

21 years ago*** empty log message ***
Stefan Monnier [Thu, 22 May 2003 21:40:50 +0000 (21:40 +0000)]
*** empty log message ***

21 years agoSummary: MIME support added for e-mail processing that
Stefan Monnier [Thu, 22 May 2003 21:34:00 +0000 (21:34 +0000)]
Summary: MIME support added for e-mail processing that
skips encoded regions.  Allow user to skip saving Fcc messages with
large attachments.  Fixed region skipping bug with multi-line
comments - e.g.  tex $ regions spanning multiple lines.
Added support for postscript and uuencoded regions.
Redundant dictionary file names purged.
Dictionary definition field name changed from "Character Set"
to "Coding System".  Fixed bug in reloading dictionaries.
Modified headers to reflect new version.  XEmacs menu now adds
customize item.
(ispell-check-version): No longer an aliased function.
Returns library path if not called interactively.
Variable `temporary-file-directory' protected if not loaded.
(check-ispell-version): Now the alias for `ispell-check-version'.
(ispell-message-fcc-skip): New variable that determines if and when
to query about saving Fcc copy of message if an attachment is large.
(ispell-skip-html): Declared buffer-local.
(ispell-local-dictionary-alist): Docstring expanded.
Tag name changed from "Character Set" to "Coding System".
(ispell-dictionary-alist-1): Removed redundant command-line option to
load brasileiro, british, and castellano dictionary files.
(ispell-dictionary-alist-2): Removed redundant command-line option to
load czech dictionary file.
(ispell-dictionary-alist-3): Moved francais-tex here.
(ispell-dictionary-alist-4): Removed german and german8 dictionaries.
The deutsch ones are the correct definitions.  `nederlands'
and `nederlands8' dictionaries moved here.
(ispell-dictionary-alist-5): `polish' and `portugues' dictionaries
moved here.  Removed redundant command-line option to `norsk'
and `portugues'.
(ispell-dictionary-alist-6): Removed redundant command-line option to
load `russian' and `slovak' dictionary files.
(ispell-dictionary-alist): Tag name changed from "Character Set" to
"Coding System".
(ispell-version): Updated to 3.6.
(ispell-library-directory): Calls non-deprecated function.
(ispell-valid-dictionary-list): New function returning all valid
dictionaries on machine.
(ispell-checking-message): Documentation string improved.
(ispell-skip-region-alist): Added uuencoded and postscript region
skipping.  Improved http/e-mail/file regexp to not match `/.\w'.
(ispell-html-skip-alists): New variable for html region support.
(ispell-send-string): Removed redundant xemacs check.
(ispell-word): Fix spelling error in documentation string, added
extent information to support highlighting in ispell-minor-mode.
(ispell-command-loop): Disable horizontal scrollbar in XEmacs
choices buffer.
(ispell-show-choices): Directly select `choices-window'.
(ispell-help): Use default buffer size for electric help.
(ispell-adjusted-window-height): Correct for xemacs detection.
(ispell-start-process): Don't double specify dictionary file name.
(ispell-init-process): Set `ispell-library-path' each call.
(ispell-change-dictionary): Now only completes valid dictionaries.
(ispell-region): Add support for MIME region skipping and Fcc
message query for large attachments.
(ispell-begin-skip-region-regexp): Add documentation string.
Added message support and cleaned up code for generic and html regions.
(ispell-begin-skip-region): Function is now requires alist argument.
(ispell-begin-tex-skip-regexp): Added comments and support
improved html and message regions.
(ispell-skip-region-list): New function for MIME and region skipping.
(ispell-tex-arg-end): Add documentation string.
(ispell-ignore-fcc): New function to query saving Fcc message.
(ispell-skip-region): Calculate alist for key match dynamically,
html skipping pushed to alists.
(ispell-get-line): Add support for multi-line comment regions.
(ispell): Check that variables to continue spelling are bound.
(ispell-message-text-end): Postscript and uuencoded regions now
supported as MIME regions, rather than as end-of-message region.
(ispell-mime-multipartp): New function supporting MIME.
(ispell-mime-skip-part): New function supporting MIME.
(ispell-message): Add MIME support.
(ispell-buffer-local-parsing): Variable `ispell-skip-html' now local.
(ispell-buffer-local-dict): Fixed bug for detecting and reloading
new dictionary.

21 years ago*** empty log message ***
Juanma Barranquero [Thu, 22 May 2003 21:06:42 +0000 (21:06 +0000)]
*** empty log message ***

21 years ago(Creating Strings): Update split-string specification and examples.
Juanma Barranquero [Thu, 22 May 2003 21:05:25 +0000 (21:05 +0000)]
(Creating Strings): Update split-string specification and examples.

21 years ago(split-string): Implement specification that splitting on explicit separators
Juanma Barranquero [Thu, 22 May 2003 20:59:57 +0000 (20:59 +0000)]
(split-string): Implement specification that splitting on explicit separators
retains null fields.  Add new argument OMIT-NULLS.  Special-case (split-string
"a string").

21 years ago*** empty log message ***
Dave Love [Thu, 22 May 2003 20:01:37 +0000 (20:01 +0000)]
*** empty log message ***

21 years ago(difftime) [!HAVE_DIFFTIME]: Define.
Dave Love [Thu, 22 May 2003 20:01:19 +0000 (20:01 +0000)]
(difftime) [!HAVE_DIFFTIME]: Define.
(strerror) [!HAVE_STRERROR && !WINDOWSNT]: New.

21 years ago(Indentation): Explain the concepts.
Kai Großjohann [Thu, 22 May 2003 14:53:58 +0000 (14:53 +0000)]
(Indentation): Explain the concepts.
(Just Spaces): Explain why preventing tabs for indentation might
be useful.

21 years agoInclude lisp.h, not ../src/lisp.h.
Dave Love [Thu, 22 May 2003 13:38:44 +0000 (13:38 +0000)]
Include lisp.h, not ../src/lisp.h.
(make_drawing_gcs): Remove unused `xswa', `mask'.

21 years agoInclude lisp.h, not ../src/lisp.h.
Dave Love [Thu, 22 May 2003 13:30:20 +0000 (13:30 +0000)]
Include lisp.h, not ../src/lisp.h.
(lw_lucid_widget_p): Remove unused `mw'.
(xlw_update_one_widget, xlw_pop_instance) [PROTOTYPES]: Provide
ISO C arglists.

21 years agoRemove redundant test for term.h. Test for
Dave Love [Thu, 22 May 2003 13:19:53 +0000 (13:19 +0000)]
Remove redundant test for term.h.  Test for
difftime.

21 years ago(ENCODE_UNSAFE_CHARACTER): Adjusted for the name change
Kenichi Handa [Thu, 22 May 2003 05:53:23 +0000 (05:53 +0000)]
(ENCODE_UNSAFE_CHARACTER): Adjusted for the name change
of CODING_REPLACEMENT_CHARACTER.
(decode_coding_iso2022): If CODING_FLAG_ISO_SAFE, set
CODING_MODE_INHIBIT_UNENCODABLE_CHAR flag in coding->mode, and
check this flag on encoding.
(encode_coding_sjis_big5): Check
CODING_MODE_INHIBIT_UNENCODABLE_CHAR flag of coding->mode.
(Fset_terminal_coding_system_internal): Set
CODING_MODE_INHIBIT_UNENCODABLE_CHAR flag in terminal_coding.mode
instead of setting CODING_FLAG_ISO_SAFE flag in
terminal_coding.flags.

21 years ago(CODING_REPLACEMENT_CHARACTER): Renamed from
Kenichi Handa [Thu, 22 May 2003 05:52:15 +0000 (05:52 +0000)]
(CODING_REPLACEMENT_CHARACTER): Renamed from
CODING_INHIBIT_CHARACTER_SUBSTITUTION.
(CODING_MODE_INHIBIT_UNENCODABLE_CHAR): New macro.

21 years agoUpdated.
Kenichi Handa [Thu, 22 May 2003 04:43:12 +0000 (04:43 +0000)]
Updated.

21 years ago*** empty log message ***
Kenichi Handa [Thu, 22 May 2003 04:42:34 +0000 (04:42 +0000)]
*** empty log message ***

21 years ago("chinese-py-punct-b5"): Change the title
Kenichi Handa [Thu, 22 May 2003 04:20:28 +0000 (04:20 +0000)]
("chinese-py-punct-b5"): Change the title
Chinese characters from GB to Big5.

21 years ago(select-safe-coding-system): Try
Kenichi Handa [Thu, 22 May 2003 01:50:11 +0000 (01:50 +0000)]
(select-safe-coding-system): Try
default-buffer-file-coding-system too for automatic selection.

21 years ago*** empty log message ***
Dave Love [Wed, 21 May 2003 22:28:54 +0000 (22:28 +0000)]
*** empty log message ***

21 years agoutf bits. useXIM.
Dave Love [Wed, 21 May 2003 22:23:52 +0000 (22:23 +0000)]
utf bits.  useXIM.

21 years agouseXIM. index entries.
Dave Love [Wed, 21 May 2003 22:14:51 +0000 (22:14 +0000)]
useXIM.  index entries.

21 years ago(x_window, x_window): Use use_xim.
Dave Love [Wed, 21 May 2003 22:12:15 +0000 (22:12 +0000)]
(x_window, x_window): Use use_xim.

21 years ago(use_xim): Initialize.
Dave Love [Wed, 21 May 2003 22:11:50 +0000 (22:11 +0000)]
(use_xim): Initialize.
(xim_open_dpy, xim_initialize, xim_close_dpy): Use use_xim.
(x_term_init): Maybe set use_xim.

21 years ago(use_xim) [HAVE_X_I18N]: Declare.
Dave Love [Wed, 21 May 2003 22:11:31 +0000 (22:11 +0000)]
(use_xim) [HAVE_X_I18N]: Declare.

21 years ago(unicodedata-file): New.
Dave Love [Wed, 21 May 2003 22:00:01 +0000 (22:00 +0000)]
(unicodedata-file): New.
(unicode-data): New (adapted from unicode branch).
(describe-char): Use it.  Print char's unicode differently.  Avoid
elements with null cadr when formatting list.  Clarify error
message when used in Help buffer.
(button): Require when compiling.
(describe-char-after): Alias for obsolete command.

21 years ago(main) [WINDOWSNT]: Move it here.
Jason Rumney [Wed, 21 May 2003 20:46:24 +0000 (20:46 +0000)]
(main) [WINDOWSNT]: Move it here.

21 years ago(_start): Remove _fmode initialization.
Jason Rumney [Wed, 21 May 2003 20:43:00 +0000 (20:43 +0000)]
(_start): Remove _fmode initialization.

21 years ago(gud-gdba-command-name): Use -noasync option for Gdb
Nick Roberts [Wed, 21 May 2003 20:12:20 +0000 (20:12 +0000)]
(gud-gdba-command-name): Use -noasync option for Gdb
with MS windows.
(gdb-display-end): Only make buffer writeable temporarily.
Move "View" submenu up one level.

21 years ago*** empty log message ***
Nick Roberts [Wed, 21 May 2003 20:10:34 +0000 (20:10 +0000)]
*** empty log message ***

21 years ago(get_local_map): Don't get char-property of previous
Stefan Monnier [Wed, 21 May 2003 16:39:49 +0000 (16:39 +0000)]
(get_local_map): Don't get char-property of previous
point any more: get_pos_property already does it and better.

21 years agoDo not instruct the user to autoload `ansi-color-for-comint-mode-on'.
Lute Kamstra [Wed, 21 May 2003 15:55:52 +0000 (15:55 +0000)]
Do not instruct the user to autoload `ansi-color-for-comint-mode-on'.

21 years ago(ctl-x-map): Remove the C-x U binding added recently.
Stefan Monnier [Wed, 21 May 2003 15:29:36 +0000 (15:29 +0000)]
(ctl-x-map): Remove the C-x U binding added recently.

21 years ago*** empty log message ***
Dave Love [Wed, 21 May 2003 12:59:28 +0000 (12:59 +0000)]
*** empty log message ***

21 years ago(gdb-view-source, gdb-selected-view): New variables.
Nick Roberts [Wed, 21 May 2003 00:49:46 +0000 (00:49 +0000)]
(gdb-view-source, gdb-selected-view): New variables.
(gdba): Inhibit DOS window in MS Windows.
(gdb-inferior-io-mode): Use hexl instead of cat.
(gdb-info-breakpoints-custom, gdb-assembler-custom, gdb-reset):
Use text in margin for MS Windows as there is no image support.
(gdb-restore-windows, gdb-setup-windows): Restore/start with
assembler view if appropriate.
(gdb-assembler-custom): Assembler code should display at point.
Parse address correctly.
(gdb-frame-handler): Accommodate selection of display of source
or assembler.
Add radio buttons to select display of source or assembler.

21 years ago*** empty log message ***
Nick Roberts [Wed, 21 May 2003 00:48:48 +0000 (00:48 +0000)]
*** empty log message ***

21 years agoNotes on fonts, Debian packages.
Dave Love [Tue, 20 May 2003 16:57:09 +0000 (16:57 +0000)]
Notes on fonts, Debian packages.

21 years ago*** empty log message ***
Dave Love [Tue, 20 May 2003 16:34:55 +0000 (16:34 +0000)]
*** empty log message ***

21 years agoCheck HAVE_LIBLOCKFILE like HAVE_LIBMAIL.
Dave Love [Tue, 20 May 2003 16:34:35 +0000 (16:34 +0000)]
Check HAVE_LIBLOCKFILE like HAVE_LIBMAIL.

21 years agoDefine LIBS_MAIL=-llockfile.
Dave Love [Tue, 20 May 2003 16:33:02 +0000 (16:33 +0000)]
Define LIBS_MAIL=-llockfile.

21 years agoAppend * to s390-*-linux-gnu case.
Dave Love [Tue, 20 May 2003 16:32:16 +0000 (16:32 +0000)]
Append * to s390-*-linux-gnu case.
(LIBMAIL) <lockfile>: Don't define.

21 years ago(MAIL_USE_FLOCK): Make it conditional.
Dave Love [Tue, 20 May 2003 16:27:57 +0000 (16:27 +0000)]
(MAIL_USE_FLOCK): Make it conditional.

21 years ago*** empty log message ***
Juanma Barranquero [Mon, 19 May 2003 22:26:09 +0000 (22:26 +0000)]
*** empty log message ***

21 years ago(desktop-save): Ensure parameter is expanded and ends with a slash before
Juanma Barranquero [Mon, 19 May 2003 22:17:30 +0000 (22:17 +0000)]
(desktop-save): Ensure parameter is expanded and ends with a slash before
assigning it to desktop-dirname and default-directory.
(desktop-read): Put buffers existing prior to evaluating the desktop (and not
reused) at the end of the buffer list.
(desktop-create-buffer): Don't update desktop-first-buffer for old desktop
files.

21 years ago(xml-name-regexp): Wrap in `eval-and-compile'.
John Paul Wallington [Mon, 19 May 2003 17:45:27 +0000 (17:45 +0000)]
(xml-name-regexp): Wrap in `eval-and-compile'.

21 years ago*** empty log message ***
Stefan Monnier [Mon, 19 May 2003 16:36:06 +0000 (16:36 +0000)]
*** empty log message ***

21 years agoDoc fixes.
Dave Love [Mon, 19 May 2003 16:03:45 +0000 (16:03 +0000)]
Doc fixes.
(xml-parse-file, xml-parse-region): Autoload.
(xml-syntax-table, xml-name-regexp): New.
(xml-parse-region): Narrow to region, set syntax-table and
case-fold-search.  Reject fewer valid documents.
(xml-parse-tag): Remove arg END.  Callers changed.
(xml-parse-tag): Use skip-syntax-forward.  Use PARSE-DTD arg
properly.  Don't use buffer-substring-no-properties.  Don't bind
case-fold-search.  Fix syntax for empty elements.  Hoist consing
of end-of-tag regexp out of loop.
(xml-parse-attlist): Remove arg.  Callers changed.  Use
skip-syntax-forward, replace-regexp-in-string, forward-sexp.
Allow non-ASCII names.
(xml-skip-dtd): Remove arg.  Callers changed.  Change matching
code.
(xml-parse-dtd): Grok external DTDs.  Allow non-ASCII.  Don't use
match-string-no-properties.
(xml-ucs-to-string): Deleted.
(xml-substitute-entity): New.
(xml-substitute-special): Use it.
(xml-debug-print-internal): Simplify insertions.
(xml-parse-file): Avoid finding file in xml-mode.

21 years ago* simple.el (kill-whole-line): New function.
Kai Großjohann [Mon, 19 May 2003 15:47:14 +0000 (15:47 +0000)]
* simple.el (kill-whole-line): New function.
* bindings.el (global-map): Bind it.

21 years ago*** empty log message ***
Richard M. Stallman [Mon, 19 May 2003 14:52:43 +0000 (14:52 +0000)]
*** empty log message ***

21 years agoCorrect invariant section names.
Richard M. Stallman [Mon, 19 May 2003 14:52:12 +0000 (14:52 +0000)]
Correct invariant section names.

21 years ago(goto-address-fontify-maximum-size): Value t means no limit.
Richard M. Stallman [Mon, 19 May 2003 14:49:25 +0000 (14:49 +0000)]
(goto-address-fontify-maximum-size): Value t means no limit.
(goto-address-fontify): Implement that feature.

21 years ago(find-function-on-key): Move the call to find-function-other-window
Richard M. Stallman [Mon, 19 May 2003 14:47:46 +0000 (14:47 +0000)]
(find-function-on-key): Move the call to find-function-other-window
outside the save-excursion.

21 years ago(ff-special-constructs): Delete the Ada entry.
Richard M. Stallman [Mon, 19 May 2003 14:46:49 +0000 (14:46 +0000)]
(ff-special-constructs): Delete the Ada entry.

21 years ago(x-create-frame-with-faces): Don't call face-set-after-frame-default.
Richard M. Stallman [Mon, 19 May 2003 14:46:06 +0000 (14:46 +0000)]
(x-create-frame-with-faces): Don't call face-set-after-frame-default.
(face-set-after-frame-default): Copy attrs of global `default'
face to FRAME's `default' face.

21 years agoMark as obsolete.
Richard M. Stallman [Mon, 19 May 2003 14:43:20 +0000 (14:43 +0000)]
Mark as obsolete.

21 years agoComment change.
Richard M. Stallman [Mon, 19 May 2003 14:41:32 +0000 (14:41 +0000)]
Comment change.

21 years ago(Finternal_set_lisp_face_attribute): Handle Qunspecified
Richard M. Stallman [Mon, 19 May 2003 14:41:09 +0000 (14:41 +0000)]
(Finternal_set_lisp_face_attribute): Handle Qunspecified
as value for QCfont attribute.
(realize_default_face): lface should already exist; crash if not.
Specify 0 for FORCE_P when calling set_lface_from_font_name.

21 years ago(Fignore_event): Doc fix.
Richard M. Stallman [Mon, 19 May 2003 14:38:44 +0000 (14:38 +0000)]
(Fignore_event): Doc fix.

21 years ago(decode_coding_string): Handle post-read-conversion
Kenichi Handa [Mon, 19 May 2003 13:02:39 +0000 (13:02 +0000)]
(decode_coding_string): Handle post-read-conversion
even if the coding doesn't require decoding.

21 years ago*** empty log message ***
Kenichi Handa [Mon, 19 May 2003 13:02:16 +0000 (13:02 +0000)]
*** empty log message ***

21 years ago*** empty log message ***
Juanma Barranquero [Mon, 19 May 2003 00:10:02 +0000 (00:10 +0000)]
*** empty log message ***