]> git.eshelyaron.com Git - emacs.git/log
emacs.git
22 years ago(defcustom): Documented :tag, :link and :load.
Eli Zaretskii [Thu, 3 Jan 2002 16:56:30 +0000 (16:56 +0000)]
(defcustom): Documented :tag, :link and :load.

22 years ago(mail-recover-1): New function.
Eli Zaretskii [Thu, 3 Jan 2002 16:52:26 +0000 (16:52 +0000)]
(mail-recover-1): New function.
(mail-recover): Switch to the *mail* buffer right away.  Use
buffer-auto-save-file-name instead of calling
make-auto-save-file-name.  Call dired-noselect instead of invoking
`ls' directly.  Bind coding-system-for-read to emacs-mule-unix
before reading the auto-save file.  If the buffer's auto-save file
does not exist, call mail-recover-1 to allow recovery from past
auto-saved drafts.

22 years ago* mm-util.el (mm-use-find-coding-systems-region): New variable.
ShengHuo ZHU [Thu, 3 Jan 2002 14:51:05 +0000 (14:51 +0000)]
* mm-util.el (mm-use-find-coding-systems-region): New variable.
(mm-find-mime-charset-region): Use it.
* nntp.el (nntp-send-buffer): Use mm-with-unibyte-current-buffer.

22 years ago(read_key_sequence): Fixed cast of submaps arg to bcopy.
Kim F. Storm [Thu, 3 Jan 2002 11:30:57 +0000 (11:30 +0000)]
(read_key_sequence): Fixed cast of submaps arg to bcopy.

22 years ago*** empty log message ***
Kim F. Storm [Thu, 3 Jan 2002 11:30:13 +0000 (11:30 +0000)]
*** empty log message ***

22 years agoFix header.
Pavel Janík [Thu, 3 Jan 2002 08:43:09 +0000 (08:43 +0000)]
Fix header.

22 years ago(ange-ftp-shell-command): Remove port specification from the hostname.
Pavel Janík [Thu, 3 Jan 2002 08:39:44 +0000 (08:39 +0000)]
(ange-ftp-shell-command): Remove port specification from the hostname.

22 years ago(display-time-load-average-threshold): Fix defcustom (add type and group).
Pavel Janík [Thu, 3 Jan 2002 08:37:40 +0000 (08:37 +0000)]
(display-time-load-average-threshold): Fix defcustom (add type and group).

22 years ago2002-01-03 ShengHuo ZHU <zsh@cs.rochester.edu>
ShengHuo ZHU [Thu, 3 Jan 2002 06:52:30 +0000 (06:52 +0000)]
2002-01-03  ShengHuo ZHU  <zsh@cs.rochester.edu>

* mm-util.el (mm-charset-to-coding-system): Don't setq charset.

22 years agoDescribe define-global-abbrev and define-mode-abbrev.
Richard M. Stallman [Thu, 3 Jan 2002 05:19:26 +0000 (05:19 +0000)]
Describe define-global-abbrev and define-mode-abbrev.

22 years agoExtensive changes to support multiple xscheme buffers:
Richard M. Stallman [Wed, 2 Jan 2002 23:50:57 +0000 (23:50 +0000)]
Extensive changes to support multiple xscheme buffers:
(run-scheme): Break up into new functions to facilitate starting
processes in other buffers.
(xscheme-start, xscheme-read-command-line): New functions.
(start-scheme, select-scheme)
(default-xscheme-runlight)
(global-set-scheme-interaction-buffer)
(local-set-scheme-interaction-buffer)
(local-clear-scheme-interaction-buffer)
(exit-scheme-interaction-mode)
(verify-xscheme-buffer): New functions.
(xscheme-process-name, xscheme-buffer-name)
(xscheme-runlight): New internal vars.
(default-xscheme-runlight): New const.
(xscheme-start-process): Add args for the process/buffer names.
(reset-scheme): Pass process/buffer names.
(scheme-interaction-mode): Initialize new local vars.
(reset-scheme, xscheme-send-string-2, xscheme-process-running-p)
(xscheme-select-process-buffer, xscheme-process-buffer)
(xscheme-send-region, xscheme-send-char, xscheme-send-interrupt)
(xscheme-goto-output-point, xscheme-write-message-1): Use new
var xscheme-process-name.
(xscheme-start-process): Initialize xscheme-process-name and
xscheme-buffer-name in the process buffer.  Pass buffer name to
xscheme-modeline-initialize.
(xscheme-modeline-initialize): Add argument to specify buffer name
for mode-line vars.
(xscheme-process-sentinel): Make sure sentinel is run in the
process buffer so it sees its local vars.
(xscheme-process-filter-initialize, xscheme-set-runlight): More
elaborate logic to handle multiple-buffer mode lines.

(xscheme-enter-input-wait): Re-enable control-G handler upon
entering input wait.

(scheme-interaction-mode): Add arg to preserve local vars.
(xscheme-enter-interaction-mode)
(xscheme-enter-debugger-mode): Preserve local vars.
(xscheme-start-process): Clobber local vars.

(scheme-interaction-mode-commands): Allow end user to add commands
to scheme-interaction-mode keymap.
(scheme-interaction-mode-commands-alist): New variable.

(xscheme-send-string): Don't use insert-before-markers.

Implement a per-buffer kill ring:
(xscheme-insert-expression)
(xscheme-rotate-yank-pointer, xscheme-yank)
(xscheme-yank-pop, xscheme-yank-push): New functions.
(xscheme-expressions-ring)
(xscheme-expressions-ring-yank-pointer)
(xscheme-expressions-ring-max): New variables.
(xscheme-send-string-1): Call xscheme-insert-expression to save
expression in ring.
(xscheme-yank-previous-send): Now an alias for xscheme-yank.
(xscheme-previous-send): Deleted variable.

(xscheme-send-string-2, xscheme-send-char, xscheme-send-proceed,
xscheme-send-control-g-interrupt): Use process-send-string rather
than send-string.

(xscheme-send-region): Insert a newline after an expression that
is submitted in the interaction buffer, for consistency with
recent changes to Edwin.

(xscheme-delete-output): New function mimics comint-delete-output.
(xscheme-last-input-end): New internal variable.
(xscheme-process-filter-output): Update xscheme-last-input-end.

(xscheme-send-control-g-interrupt): Make sure that
xscheme-control-g-disabled-p is looked up in the right buffer.

(xscheme-enable-control-g): Clear C-g message if visible.
(xscheme-control-g-message-string): New internal var.
(xscheme-send-control-g-interrupt): Use new var.

(xscheme-send-control-g-interrupt, xscheme-send-interrupt): Delay
after sending interrupt in order to work around race condition.

(xscheme-send-control-g-interrupt, xscheme-send-interrupt)
(xscheme-send-char): Use xscheme-send-char rather than send-string
to send single char.

(xscheme-process-filter, xscheme-process-filter-alist): Add
support for evaluating expressions outside of the call-excursion.
(xscheme-process-filter:string-action-noexcursion): New func.

(xscheme-write-value): Change output string to match that used by Edwin.

(xscheme-coerce-prompt): Don't write a space after a command
prompt.  The PROMPT-FOR-COMMAND- procedures will take care of this
for us.

(reset-scheme): Delete process after killing it.

22 years ago(facemenu-active-faces):
Richard M. Stallman [Wed, 2 Jan 2002 22:56:12 +0000 (22:56 +0000)]
(facemenu-active-faces):
Use face-attributes-as-vector, not face-attributes-vector.

22 years ago*** empty log message ***
Richard M. Stallman [Wed, 2 Jan 2002 21:55:01 +0000 (21:55 +0000)]
*** empty log message ***

22 years ago(read_key_sequence): Handle the keymap property before minor mode maps.
Richard M. Stallman [Wed, 2 Jan 2002 21:54:11 +0000 (21:54 +0000)]
(read_key_sequence): Handle the keymap property before minor mode maps.

22 years ago(Fformat): Update thissize from field_width
Richard M. Stallman [Wed, 2 Jan 2002 19:57:07 +0000 (19:57 +0000)]
(Fformat): Update thissize from field_width
based on the actual width, in the string case.

22 years ago(function-key-map): Don't bind shifted keypad numeric keys.
Eli Zaretskii [Wed, 2 Jan 2002 13:46:25 +0000 (13:46 +0000)]
(function-key-map): Don't bind shifted keypad numeric keys.

22 years agoFix typo.
Pavel Janík [Wed, 2 Jan 2002 13:27:22 +0000 (13:27 +0000)]
Fix typo.

22 years ago*** empty log message ***
Pavel Janík [Wed, 2 Jan 2002 13:24:28 +0000 (13:24 +0000)]
*** empty log message ***

22 years ago(enriched-handle-display-prop): Remove unused variables.
Pavel Janík [Wed, 2 Jan 2002 13:19:09 +0000 (13:19 +0000)]
(enriched-handle-display-prop): Remove unused variables.
(enriched-mode): Doc fix.

22 years ago(ucs-8859-8-alist): Comment away Hebrew points.
Eli Zaretskii [Wed, 2 Jan 2002 06:11:07 +0000 (06:11 +0000)]
(ucs-8859-8-alist): Comment away Hebrew points.

22 years agoMargin displays can't be mouse sensitive.
Richard M. Stallman [Wed, 2 Jan 2002 05:28:50 +0000 (05:28 +0000)]
Margin displays can't be mouse sensitive.

22 years ago2002-01-01 ShengHuo ZHU <zsh@cs.rochester.edu>
ShengHuo ZHU [Wed, 2 Jan 2002 03:36:29 +0000 (03:36 +0000)]
2002-01-01  ShengHuo ZHU  <zsh@cs.rochester.edu>

* message.el, gnus-art.el, gnus.el, gnus-cite.el:
Adapt face definitions to use :weight and :slant.

22 years ago*** empty log message ***
Pavel Janík [Tue, 1 Jan 2002 22:14:32 +0000 (22:14 +0000)]
*** empty log message ***

22 years ago(UNIBYTE_STR_AS_MULTIBYTE_P): Parenthesize assignment when used as truth
Pavel Janík [Tue, 1 Jan 2002 22:12:56 +0000 (22:12 +0000)]
(UNIBYTE_STR_AS_MULTIBYTE_P): Parenthesize assignment when used as truth
value to prevent gcc warnings.

22 years agoComment fixes.
Pavel Janík [Tue, 1 Jan 2002 22:12:19 +0000 (22:12 +0000)]
Comment fixes.

22 years ago(main): Parenthesize assignment when used as truth value to prevent gcc
Pavel Janík [Tue, 1 Jan 2002 22:08:54 +0000 (22:08 +0000)]
(main): Parenthesize assignment when used as truth value to prevent gcc
warnings.

22 years agoDoc fix.
Pavel Janík [Tue, 1 Jan 2002 19:16:54 +0000 (19:16 +0000)]
Doc fix.

22 years agoInclude <config.h>.
Pavel Janík [Tue, 1 Jan 2002 19:15:26 +0000 (19:15 +0000)]
Include <config.h>.

22 years ago*** empty log message ***
Pavel Janík [Tue, 1 Jan 2002 19:13:57 +0000 (19:13 +0000)]
*** empty log message ***

22 years ago(max_specpdl_size): Adjust declaration.
Andreas Schwab [Tue, 1 Jan 2002 17:00:16 +0000 (17:00 +0000)]
(max_specpdl_size): Adjust declaration.

22 years ago(max_specpdl_size, max_lisp_eval_depth): Define as int,
Andreas Schwab [Tue, 1 Jan 2002 16:59:17 +0000 (16:59 +0000)]
(max_specpdl_size, max_lisp_eval_depth): Define as int,
not EMACS_INT, to make them compatible with DEFVAR_INT.

22 years ago(quail-define-indian-trans-package): Unquote
Dave Love [Tue, 1 Jan 2002 16:55:58 +0000 (16:55 +0000)]
(quail-define-indian-trans-package): Unquote
lambda.
(quail-define-inscript-package): Avoid mapcar*.

22 years ago*** empty log message ***
Richard M. Stallman [Tue, 1 Jan 2002 07:23:41 +0000 (07:23 +0000)]
*** empty log message ***

22 years ago(jka-compr-write-region): If START = nil, use whole buf.
Richard M. Stallman [Tue, 1 Jan 2002 07:23:31 +0000 (07:23 +0000)]
(jka-compr-write-region): If START = nil, use whole buf.

22 years ago(print_object): Test print_escape_nonascii only for unibyte strings.
Richard M. Stallman [Tue, 1 Jan 2002 07:12:59 +0000 (07:12 +0000)]
(print_object): Test print_escape_nonascii only for unibyte strings.
(PRINTPREPARE): Once again bind Qprint_escape_nonascii
when outputting to a multibyte buffer.

22 years ago*** empty log message ***
Pavel Janík [Tue, 1 Jan 2002 01:25:11 +0000 (01:25 +0000)]
*** empty log message ***

22 years agoRemove unnecessary whitespaces.
Pavel Janík [Tue, 1 Jan 2002 00:49:56 +0000 (00:49 +0000)]
Remove unnecessary whitespaces.

22 years ago*** empty log message ***
Richard M. Stallman [Mon, 31 Dec 2001 20:53:24 +0000 (20:53 +0000)]
*** empty log message ***

22 years ago(various face definitions): Use :weight, not :bold.
Richard M. Stallman [Mon, 31 Dec 2001 20:44:44 +0000 (20:44 +0000)]
(various face definitions): Use :weight, not :bold.

22 years ago(various face definitions): Use :weight and :slant.
Richard M. Stallman [Mon, 31 Dec 2001 20:43:36 +0000 (20:43 +0000)]
(various face definitions): Use :weight and :slant.

22 years agoComment change.
Richard M. Stallman [Mon, 31 Dec 2001 20:35:03 +0000 (20:35 +0000)]
Comment change.

22 years ago(various face definitions): Use :weight, not :bold.
Richard M. Stallman [Mon, 31 Dec 2001 20:34:50 +0000 (20:34 +0000)]
(various face definitions): Use :weight, not :bold.

22 years ago(ps-font-lock-face-attributes): Use :weight and :slant.
Richard M. Stallman [Mon, 31 Dec 2001 20:32:52 +0000 (20:32 +0000)]
(ps-font-lock-face-attributes): Use :weight and :slant.

22 years ago(custom-face-edit-fix-value): Delete `assert' call.
Richard M. Stallman [Mon, 31 Dec 2001 20:22:27 +0000 (20:22 +0000)]
(custom-face-edit-fix-value): Delete `assert' call.
(various face definitions): Use :weight and :slant.

22 years ago(comint-highlight-input): Use :weight, not :bold.
Richard M. Stallman [Mon, 31 Dec 2001 20:18:09 +0000 (20:18 +0000)]
(comint-highlight-input): Use :weight, not :bold.

22 years ago(initializing from font-lock-face-attributes):
Richard M. Stallman [Mon, 31 Dec 2001 20:16:46 +0000 (20:16 +0000)]
(initializing from font-lock-face-attributes):
Use :weight and :slant, not :bold and :italic.
(various face definitions): Likewise.

22 years ago(custom-face-edit-fix-value): New function.
Richard M. Stallman [Mon, 31 Dec 2001 20:13:54 +0000 (20:13 +0000)]
(custom-face-edit-fix-value): New function.
(custom-face-edit): Use it, to convert :italic and :bold to new forms.

22 years agoRemove the "regenerated" entries.
Eli Zaretskii [Mon, 31 Dec 2001 19:46:33 +0000 (19:46 +0000)]
Remove the "regenerated" entries.

22 years ago(octave-abbrev-table): Mark all the predefined abbrevs as "system" abbrevs.
Pavel Janík [Sun, 30 Dec 2001 22:23:27 +0000 (22:23 +0000)]
(octave-abbrev-table): Mark all the predefined abbrevs as "system" abbrevs.

22 years ago(idlwave-mode-abbrev-table): Mark all the predefined abbrevs as "system"
Pavel Janík [Sun, 30 Dec 2001 22:18:30 +0000 (22:18 +0000)]
(idlwave-mode-abbrev-table): Mark all the predefined abbrevs as "system"
abbrevs.

22 years ago(fortran-mode-abbrev-table): Mark all the predefined abbrevs as "system"
Pavel Janík [Sun, 30 Dec 2001 22:16:42 +0000 (22:16 +0000)]
(fortran-mode-abbrev-table): Mark all the predefined abbrevs as "system"
abbrevs.

22 years ago(f90-mode-abbrev-table): Mark all the predefined abbrevs as "system"
Pavel Janík [Sun, 30 Dec 2001 22:15:49 +0000 (22:15 +0000)]
(f90-mode-abbrev-table): Mark all the predefined abbrevs as "system"
abbrevs.

22 years ago(vhdl-mode-abbrev-table-init): Mark all the predefined abbrevs as "system"
Pavel Janík [Sun, 30 Dec 2001 22:14:41 +0000 (22:14 +0000)]
(vhdl-mode-abbrev-table-init): Mark all the predefined abbrevs as "system"
abbrevs.

22 years ago(sql-mode-abbrev-table): Mark all the predefined abbrevs as "system"
Pavel Janík [Sun, 30 Dec 2001 22:12:02 +0000 (22:12 +0000)]
(sql-mode-abbrev-table): Mark all the predefined abbrevs as "system"
abbrevs.

22 years agoRemove unnecessary whitespaces.
Pavel Janík [Sun, 30 Dec 2001 22:09:01 +0000 (22:09 +0000)]
Remove unnecessary whitespaces.

22 years agoRemove unnecessary whitespace.
Pavel Janík [Sun, 30 Dec 2001 22:07:35 +0000 (22:07 +0000)]
Remove unnecessary whitespace.

22 years ago*** empty log message ***
Richard M. Stallman [Sun, 30 Dec 2001 20:11:39 +0000 (20:11 +0000)]
*** empty log message ***

22 years agoImprove previous change.
Richard M. Stallman [Sun, 30 Dec 2001 20:11:26 +0000 (20:11 +0000)]
Improve previous change.

22 years agoExplain about ``system'' abbrevs.
Richard M. Stallman [Sun, 30 Dec 2001 20:07:27 +0000 (20:07 +0000)]
Explain about ``system'' abbrevs.

22 years ago*** empty log message ***
Richard M. Stallman [Sun, 30 Dec 2001 20:00:23 +0000 (20:00 +0000)]
*** empty log message ***

22 years agoMinor cleanup of previous change.
Richard M. Stallman [Sun, 30 Dec 2001 19:46:22 +0000 (19:46 +0000)]
Minor cleanup of previous change.

22 years ago(Info-fontify-node): For a **** underline line, put the
Richard M. Stallman [Sun, 30 Dec 2001 19:45:41 +0000 (19:45 +0000)]
(Info-fontify-node): For a **** underline line, put the
invisible and intangible props on the following newline, but not
on the previous newline or the last char of the previous line.

22 years ago(face-set-after-frame-default): Don't change `default' face.
Richard M. Stallman [Sun, 30 Dec 2001 19:39:15 +0000 (19:39 +0000)]
(face-set-after-frame-default): Don't change `default' face.

(minibuffer-prompt): Adopt some default colors.

22 years ago(query-replace-read-args): Immediate error if read-only.
Richard M. Stallman [Sun, 30 Dec 2001 19:37:47 +0000 (19:37 +0000)]
(query-replace-read-args): Immediate error if read-only.

22 years ago(makeinfo-compilation-sentinel):
Richard M. Stallman [Sun, 30 Dec 2001 19:33:13 +0000 (19:33 +0000)]
(makeinfo-compilation-sentinel):
Display the output buffer in a more intelligent way.

22 years ago(insert-directory): Modify the "total" line wording, in accordance with
Eli Zaretskii [Sun, 30 Dec 2001 17:08:39 +0000 (17:08 +0000)]
(insert-directory): Modify the "total" line wording, in accordance with
files.el's insert-directory.

22 years agoRemove the "configure: Regenerated" entry.
Eli Zaretskii [Sun, 30 Dec 2001 06:40:17 +0000 (06:40 +0000)]
Remove the "configure: Regenerated" entry.

22 years ago*** empty log message ***
Richard M. Stallman [Sun, 30 Dec 2001 03:25:26 +0000 (03:25 +0000)]
*** empty log message ***

22 years ago(read_escape): New arg BYTEREP for reporting whether
Richard M. Stallman [Sun, 30 Dec 2001 03:24:17 +0000 (03:24 +0000)]
(read_escape): New arg BYTEREP for reporting whether
escape forces unibyte or multibyte.
(read1): When reading a string, take note of that info.

22 years ago(print_object): In multibyte string, use hex escapes.
Richard M. Stallman [Sun, 30 Dec 2001 03:22:55 +0000 (03:22 +0000)]
(print_object): In multibyte string, use hex escapes.
Use octal only for unibyte strings.
(PRINTPREPARE): Don't ever set Qprint_escape_nonascii.

22 years ago(basic-save-buffer): If a before-write hook displays
Richard M. Stallman [Sun, 30 Dec 2001 02:39:12 +0000 (02:39 +0000)]
(basic-save-buffer): If a before-write hook displays
an echo area message, pause before calling basic-save-buffer-1.

22 years ago(reftex-query-replace-document, reftex-change-label): Doc fix.
Richard M. Stallman [Sun, 30 Dec 2001 00:56:40 +0000 (00:56 +0000)]
(reftex-query-replace-document, reftex-change-label): Doc fix.

22 years ago(dired-do-query-replace-regexp): Doc fix.
Richard M. Stallman [Sun, 30 Dec 2001 00:53:22 +0000 (00:53 +0000)]
(dired-do-query-replace-regexp): Doc fix.

22 years ago(tags-query-replace): Doc fix.
Richard M. Stallman [Sun, 30 Dec 2001 00:52:52 +0000 (00:52 +0000)]
(tags-query-replace): Doc fix.

22 years ago(max_specpdl_size): Add declaration.
Richard M. Stallman [Sun, 30 Dec 2001 00:13:56 +0000 (00:13 +0000)]
(max_specpdl_size): Add declaration.

22 years ago(LIBX11_SYSTEM) [MOTIF]: Add -lgen.
Richard M. Stallman [Sat, 29 Dec 2001 23:48:45 +0000 (23:48 +0000)]
(LIBX11_SYSTEM) [MOTIF]: Add -lgen.
(sigprocmask_set): Conditionalize decl on ! NOT_C_CODE.

22 years agoInclude <config.h>.
Pavel Janík [Sat, 29 Dec 2001 22:25:06 +0000 (22:25 +0000)]
Include <config.h>.

22 years agoRemove trailing whitespaces.
Pavel Janík [Sat, 29 Dec 2001 22:21:10 +0000 (22:21 +0000)]
Remove trailing whitespaces.

22 years ago* abbrev.c (Fexpand_abbrev): Use NILP instead of implicit zero
Ken Raeburn [Sat, 29 Dec 2001 21:42:22 +0000 (21:42 +0000)]
* abbrev.c (Fexpand_abbrev): Use NILP instead of implicit zero
comparison to test lisp value returned by Fget.

22 years ago*** empty log message ***
Richard M. Stallman [Sat, 29 Dec 2001 20:31:31 +0000 (20:31 +0000)]
*** empty log message ***

22 years ago(compile-internal): Fix previous change.
Richard M. Stallman [Sat, 29 Dec 2001 20:31:14 +0000 (20:31 +0000)]
(compile-internal): Fix previous change.

22 years ago(Fdo_auto_save): If NO_MESSAGE, don't call push_message.
Richard M. Stallman [Sat, 29 Dec 2001 20:12:45 +0000 (20:12 +0000)]
(Fdo_auto_save): If NO_MESSAGE, don't call push_message.

22 years ago(Info-mode): Reindent the doc-string.
Pavel Janík [Sat, 29 Dec 2001 18:02:49 +0000 (18:02 +0000)]
(Info-mode): Reindent the doc-string.

22 years ago(silly_event_symbol_error): New subrtn, from Fdefine_key.
Richard M. Stallman [Sat, 29 Dec 2001 14:54:28 +0000 (14:54 +0000)]
(silly_event_symbol_error): New subrtn, from Fdefine_key.
Handle modifier bits.  Correct typo in error message.

22 years agoAdd a comment.
Gerd Moellmann [Sat, 29 Dec 2001 12:47:29 +0000 (12:47 +0000)]
Add a comment.

22 years agoRegenerated.
Eli Zaretskii [Sat, 29 Dec 2001 09:24:31 +0000 (09:24 +0000)]
Regenerated.

22 years ago(mouse-drag-mode-line-1): When dragging a mode line upward,
Richard M. Stallman [Sat, 29 Dec 2001 04:21:25 +0000 (04:21 +0000)]
(mouse-drag-mode-line-1): When dragging a mode line upward,
shrink the windows above as necessary to get space.
(mouse-drag-move-window-bottom, mouse-drag-window-above): New fns.

22 years ago(ange-ftp-insert-directory): Explicitly follow symlinks.
Richard M. Stallman [Sat, 29 Dec 2001 02:50:51 +0000 (02:50 +0000)]
(ange-ftp-insert-directory): Explicitly follow symlinks.

22 years ago<CONFIGURATION BY HAND> Now requires autoconf 2.51.
Kim F. Storm [Sat, 29 Dec 2001 01:13:26 +0000 (01:13 +0000)]
<CONFIGURATION BY HAND> Now requires autoconf 2.51.

22 years ago*** empty log message ***
Kim F. Storm [Sat, 29 Dec 2001 01:12:35 +0000 (01:12 +0000)]
*** empty log message ***

22 years ago(ange-ftp-allow-child-lookup): Always return nil.
Richard M. Stallman [Sat, 29 Dec 2001 00:46:26 +0000 (00:46 +0000)]
(ange-ftp-allow-child-lookup): Always return nil.
This fixes a bug that treated all files as directories.

22 years agoComment change.
Richard M. Stallman [Fri, 28 Dec 2001 22:28:05 +0000 (22:28 +0000)]
Comment change.

22 years ago(iso-transl-char-map) Eliminate the
Richard M. Stallman [Fri, 28 Dec 2001 22:27:37 +0000 (22:27 +0000)]
(iso-transl-char-map) Eliminate the
alias symbols--put the translated sequences here directly.

22 years ago(c-mode-abbrev-table, c++-mode-abbrev-table, objc-mode-abbrev-table)
Richard M. Stallman [Fri, 28 Dec 2001 22:16:42 +0000 (22:16 +0000)]
(c-mode-abbrev-table, c++-mode-abbrev-table, objc-mode-abbrev-table)
(java-mode-abbrev-table, pike-mode-abbrev-table):
Mark all the predefined abbrevs as "system" abbrevs.

22 years agoUse the plist of an abbrev for multiple params if nec.
Richard M. Stallman [Fri, 28 Dec 2001 22:14:38 +0000 (22:14 +0000)]
Use the plist of an abbrev for multiple params if nec.
(Fdefine_abbrev): New arg SYSTEM-FLAG for a system abbrev.
(Fdefine_global_abbrev, Fdefine_mode_abbrev):
Update calls to Fdefine_abbrev.
(write_abbrev): Update for changed data format.
Don't list "system" abbrevs.
(Fexpand_abbrev): Update use count with new data format.
(describe_abbrev): Update for changed data format.
(Fdefine_abbrev_table): Handle the new SYSTEM-FLAG.

22 years ago*** empty log message ***
Richard M. Stallman [Fri, 28 Dec 2001 19:07:02 +0000 (19:07 +0000)]
*** empty log message ***

22 years agoTest for mbsinit.
Richard M. Stallman [Fri, 28 Dec 2001 19:06:40 +0000 (19:06 +0000)]
Test for mbsinit.

22 years ago(HAVE_MBSINIT): Add #undef.
Richard M. Stallman [Fri, 28 Dec 2001 19:06:08 +0000 (19:06 +0000)]
(HAVE_MBSINIT): Add #undef.

22 years ago(mbsinit): Define as no-op if not available.
Richard M. Stallman [Fri, 28 Dec 2001 19:05:42 +0000 (19:05 +0000)]
(mbsinit): Define as no-op if not available.

22 years ago(mail-envelope-from): Fix custom type.
Richard M. Stallman [Fri, 28 Dec 2001 18:58:40 +0000 (18:58 +0000)]
(mail-envelope-from): Fix custom type.
(sendmail-send-it): Check mail-specify-envelope-from
and mail-envelope-from in the mail buffer at start.