Juanma Barranquero [Tue, 11 Feb 2003 00:36:54 +0000 (00:36 +0000)]
Initial revision
Stefan Monnier [Tue, 11 Feb 2003 00:11:55 +0000 (00:11 +0000)]
(eldoc-echo-area-multiline-supported-p, eldoc-use-idle-timer-p): Remove.
(timer): Never require. It only works in current Emacs anyway.
(eldoc-mode, eldoc-message, eldoc-display-message-p)
(eldoc-docstring-format-sym-doc, eldoc-remove-command): Simplify.
Stefan Monnier [Mon, 10 Feb 2003 22:27:33 +0000 (22:27 +0000)]
(e): Make it a variable.
Stefan Monnier [Mon, 10 Feb 2003 22:21:46 +0000 (22:21 +0000)]
(ffap-complete-as-file-p): Use minibuffer-completing-file-name.
Stefan Monnier [Mon, 10 Feb 2003 22:20:47 +0000 (22:20 +0000)]
(load-with-code-conversion): Use push.
Stefan Monnier [Mon, 10 Feb 2003 21:56:49 +0000 (21:56 +0000)]
(font-lock-defontify): Use restore-buffer-modified-p.
Stefan Monnier [Mon, 10 Feb 2003 21:54:08 +0000 (21:54 +0000)]
(gud-gdb-run-command-fetch-lines, gud-display-line):
Use with-current-buffer and simplify.
Stefan Monnier [Mon, 10 Feb 2003 21:52:30 +0000 (21:52 +0000)]
(help-xref-on-pp): Only add xref if the text is less than 5K.
Stefan Monnier [Mon, 10 Feb 2003 21:50:00 +0000 (21:50 +0000)]
(cvs-parse-table): "no longer in repo" does not
make the file dead if we used the -n arg.
Stefan Monnier [Mon, 10 Feb 2003 21:48:38 +0000 (21:48 +0000)]
Comment update.
Stefan Monnier [Mon, 10 Feb 2003 21:45:14 +0000 (21:45 +0000)]
(process-get): Add setf method.
Stefan Monnier [Mon, 10 Feb 2003 21:44:24 +0000 (21:44 +0000)]
(server-previous-strings): Remove.
(server-process-filter): Use (process-get 'previous-string) instead.
(server-sentinel): Remove code made superfluous.
Stefan Monnier [Mon, 10 Feb 2003 21:36:03 +0000 (21:36 +0000)]
Remove redundant docstring info.
Francesco Potortì [Mon, 10 Feb 2003 14:30:19 +0000 (14:30 +0000)]
Code moved to the new script make-changelog-diff, called from here.
Francesco Potortì [Mon, 10 Feb 2003 14:27:52 +0000 (14:27 +0000)]
make-changelog-diff REL1 REL2
creates on standard output a diff of all changelog files between two
releases (should be tags).
Kim F. Storm [Mon, 10 Feb 2003 13:51:59 +0000 (13:51 +0000)]
Doc fixes.
(syms_of_process): Add `:' prefix to QCfilter_multibyte.
Juanma Barranquero [Mon, 10 Feb 2003 11:41:45 +0000 (11:41 +0000)]
*** empty log message ***
Juanma Barranquero [Mon, 10 Feb 2003 11:41:09 +0000 (11:41 +0000)]
(Info-follow-nearest-node): Implement new behavior.
Juanma Barranquero [Mon, 10 Feb 2003 11:31:36 +0000 (11:31 +0000)]
(Insertion): Don't show COUNT argument of `insert-char' as optional.
Juanma Barranquero [Mon, 10 Feb 2003 11:31:11 +0000 (11:31 +0000)]
(Current Buffer): Describe `save-current-buffer' as a special form, not a macro.
Kenichi Handa [Mon, 10 Feb 2003 11:00:18 +0000 (11:00 +0000)]
(Fstring_to_multibyte): Fix typo in the docstring.
Kai Großjohann [Mon, 10 Feb 2003 10:59:14 +0000 (10:59 +0000)]
Make it clear that "2.0.29 released" refers to Tramp.
Juanma Barranquero [Mon, 10 Feb 2003 09:59:35 +0000 (09:59 +0000)]
(ebnf2ps): Fix typo.
(ebnf-syntactic): Change group name and tag from "ebnf-syntatic".
(ebnf-syntax, ebnf-lex-comment-char, ebnf-lex-eop-char, ebnf-terminal-regexp)
(ebnf-case-fold-search, ebnf-iso-alternative-p, ebnf-iso-normalize-p)
(ebnf-yac-ignore-error-recovery): Add to group "ebnf-syntactic", not
"ebnf-syntatic".
(ebnf-optimize, ebnf-print-buffer, ebnf-print-region, ebnf-spool-buffer)
(ebnf-spool-region, ebnf-eps-buffer, ebnf-eps-region, ebnf-syntax-buffer)
(ebnf-syntax-region, ebnf-generate-region): Fix typo.
Juanma Barranquero [Mon, 10 Feb 2003 09:56:14 +0000 (09:56 +0000)]
Fix typo in comment.
Juanma Barranquero [Mon, 10 Feb 2003 09:55:17 +0000 (09:55 +0000)]
(ebnf-optimize, ebnf-optimize1): Fix typo.
Kenichi Handa [Mon, 10 Feb 2003 08:24:29 +0000 (08:24 +0000)]
*** empty log message ***
Kenichi Handa [Mon, 10 Feb 2003 07:58:29 +0000 (07:58 +0000)]
(QCfilter_multibyte): New variable.
(setup_process_coding_systems): New function.
(Fset_process_buffer, Fset_process_filter): Call
setup_process_coding_systems.
(Fstart_process): Initialize the member `filter_multibyte' of
struct Lisp_Process.
(create_process): Call setup_process_coding_systems.
(Fmake_network_process): New keyward `:filter-multibyte'.
Initialize the member `filter_multibyte' of struct Lisp_Process.
Call setup_process_coding_systems.
(server_accept_connection): Call setup_process_coding_systems.
(read_process_output): If the process has a filter, decide the
multibyteness of a string to given to the filter by
`filter_multibyte' member of the process. If the process doesn't
have a filter and the result of conversion is unibyte, use
Fstring_to_multibyte (not Fstring_make_multibyte) to get the
multibyte form.
(Fset_process_coding_system): Call setup_process_coding_systems.
(Fset_process_filter_multibyte): New function.
(Fprocess_filter_multibyte_p): New function.
(syms_of_process): Intern and staticpro QCfilter_multibyte.
Defsubr Sset_process_filter_multibyte and
Sprocess_filter_multibyte_p.
Kenichi Handa [Mon, 10 Feb 2003 07:45:13 +0000 (07:45 +0000)]
(struct Lisp_Process): New member filter_multibyte.
Kenichi Handa [Mon, 10 Feb 2003 07:44:18 +0000 (07:44 +0000)]
(setup_process_coding_systems): Add prototype.
Kenichi Handa [Mon, 10 Feb 2003 07:43:03 +0000 (07:43 +0000)]
(Fset_buffer_multibyte): If the current buffer has a
process, update coding systems for the process.
Kenichi Handa [Mon, 10 Feb 2003 04:01:56 +0000 (04:01 +0000)]
(indian-itrans-v5-table): Add entries for "E" and "O".
Martin Stjernholm [Mon, 10 Feb 2003 00:51:25 +0000 (00:51 +0000)]
(c-set-offset): Don't find a default syntactic element through
syntactic analysis if called outside a CC Mode buffer.
Kai Großjohann [Sun, 9 Feb 2003 14:43:55 +0000 (14:43 +0000)]
Rework entries for Tramp. Still not summarized, but only reformatted.
John Paul Wallington [Sun, 9 Feb 2003 14:40:09 +0000 (14:40 +0000)]
Fix misspelling of `comint-insert-previous-argument'.
Kenichi Handa [Sun, 9 Feb 2003 08:38:05 +0000 (08:38 +0000)]
*** empty log message ***
Kenichi Handa [Sun, 9 Feb 2003 08:37:36 +0000 (08:37 +0000)]
(string_to_multibyte): New function.
(Fstring_to_multibyte): New function.
(syms_of_fns): Defsubr it.
Martin Stjernholm [Sun, 9 Feb 2003 01:46:04 +0000 (01:46 +0000)]
(c-basic-common-init): Install `c-fill-paragraph' on
`fill-paragraph-function'. Although it's not the normal way to call
it in a CC Mode buffer it makes a direct call to `fill-paragraph' work
better.
Andreas Schwab [Sat, 8 Feb 2003 17:28:43 +0000 (17:28 +0000)]
*** empty log message ***
Andreas Schwab [Sat, 8 Feb 2003 17:27:58 +0000 (17:27 +0000)]
(EXEEXT): Define to @EXEEXT@ and use this variable
instead of the substitution.
Jan Djärv [Sat, 8 Feb 2003 11:18:32 +0000 (11:18 +0000)]
xterm.c (x_make_frame_visible): Call gtk_window_deiconify.
xmenu.c (menu_position_func): Adjust menu popup position so that
the menu is fully visible.
Kim F. Storm [Fri, 7 Feb 2003 23:11:17 +0000 (23:11 +0000)]
(pr-get-symbol): Define during compile.
Kim F. Storm [Fri, 7 Feb 2003 21:47:21 +0000 (21:47 +0000)]
New entry for printing package.
Add header to ido and cua entries.
Added compatibility note to cua entry.
Kim F. Storm [Fri, 7 Feb 2003 21:14:53 +0000 (21:14 +0000)]
*** empty log message ***
Kim F. Storm [Fri, 7 Feb 2003 21:06:51 +0000 (21:06 +0000)]
New file.
Assigned by Vinicius Jose Latorre <vinicius@cpqd.com.br>
Kai Großjohann [Fri, 7 Feb 2003 17:53:05 +0000 (17:53 +0000)]
Change dates for the entries concerning the 2.0.29 Tramp commit such
that they all reflect the commit date, instead of the date of the
individual changes.
This is deemed better than keeping the original change date because
it makes sure that the ChangeLog dates have more or less sequential
order.
Jan Djärv [Fri, 7 Feb 2003 16:38:54 +0000 (16:38 +0000)]
Use FRAME_OUTER_WINDOW instead of ifdef X_TOOLKIT/else/endif
Francesco Potortì [Fri, 7 Feb 2003 11:56:09 +0000 (11:56 +0000)]
*** empty log message ***
Francesco Potortì [Fri, 7 Feb 2003 11:55:51 +0000 (11:55 +0000)]
Italian GNU Translation Group <tp@lists.linux.it>
Francesco Potortì [Fri, 7 Feb 2003 11:36:30 +0000 (11:36 +0000)]
("French", "Slovenian"): Fix doc strings.
Kenichi Handa [Fri, 7 Feb 2003 01:15:01 +0000 (01:15 +0000)]
Update quail-package-alist (not
input-method-alist) to make "cyrillic-jcuken" an alias of
"russian-typewriter". Add cookie for quail-update-leim-list-file.
John Paul Wallington [Thu, 6 Feb 2003 22:02:35 +0000 (22:02 +0000)]
(rmail-summary-previous-msg): Add docstring.
(rmail-summary-line-count-flag, rmail-summary-previous-labeled-message)
(rmail-summary-next-labeled-message, rmail-summary-resend)
(rmail-summary-override-mail-send-and-exit): Doc fixes.
Stefan Monnier [Thu, 6 Feb 2003 21:45:20 +0000 (21:45 +0000)]
*** empty log message ***
Stephen Gildea [Thu, 6 Feb 2003 20:25:34 +0000 (20:25 +0000)]
Fix formatting in my most recent entry (from 2003-02-01T14:30:08Z!gildea@stop.mail-abuse.org).
Francesco Potortì [Thu, 6 Feb 2003 11:58:52 +0000 (11:58 +0000)]
Typo.
Francesco Potortì [Thu, 6 Feb 2003 11:32:07 +0000 (11:32 +0000)]
Add Slovenian to the deoc string fro language-info-alist.
Put dutch language first (alphabetic order).
Francesco Potortì [Thu, 6 Feb 2003 11:25:49 +0000 (11:25 +0000)]
Italian greeting changed.
Francesco Potortì [Thu, 6 Feb 2003 08:35:25 +0000 (08:35 +0000)]
Italian reviewer.
Francesco Potortì [Thu, 6 Feb 2003 08:26:25 +0000 (08:26 +0000)]
*** empty log message ***
Francesco Potortì [Thu, 6 Feb 2003 08:26:10 +0000 (08:26 +0000)]
Italian translator.
Francesco Potortì [Thu, 6 Feb 2003 08:22:41 +0000 (08:22 +0000)]
*** empty log message ***
Juanma Barranquero [Thu, 6 Feb 2003 08:20:12 +0000 (08:20 +0000)]
(dired-move-to-filename-regexp): Support "K" suffix on "ls -alh" output.
Francesco Potortì [Thu, 6 Feb 2003 08:19:03 +0000 (08:19 +0000)]
Italian tutorial.
translated by
Alfredo Finelli <alfredofnl@tiscali.it>
revised by
Francesco Potort�pot@gnu.org>
Juanma Barranquero [Wed, 5 Feb 2003 23:20:51 +0000 (23:20 +0000)]
*** empty log message ***
Juanma Barranquero [Wed, 5 Feb 2003 23:15:41 +0000 (23:15 +0000)]
(outline-visible): Add obsolescence declaration and remove redundant info from
docstring.
Juanma Barranquero [Wed, 5 Feb 2003 23:15:01 +0000 (23:15 +0000)]
(checkdoc-minor-keymap): Add obsolescence declaration and remove redundant info
from docstring.
Juanma Barranquero [Wed, 5 Feb 2003 23:14:06 +0000 (23:14 +0000)]
(vc-ignore-vc-files, vc-master-templates, vc-header-alist): Add obsolescence
declaration and remove redundant info from docstring.
Juanma Barranquero [Wed, 5 Feb 2003 23:13:21 +0000 (23:13 +0000)]
(vc-annotate-display, vc-checkout-carefully): Add obsolescence declaration and
remove redundant info from docstring.
Juanma Barranquero [Wed, 5 Feb 2003 23:12:41 +0000 (23:12 +0000)]
(cvs-diff-ignore-marks, cvs-diff-buffer-name): Add obsolescence declaration and
remove redundant info from docstring.
Juanma Barranquero [Wed, 5 Feb 2003 23:12:01 +0000 (23:12 +0000)]
(mouse-wheel-down-button, mouse-wheel-up-button, mouse-wheel-click-button): Add
obsolescence declaration and remove redundant info from docstring.
Juanma Barranquero [Wed, 5 Feb 2003 23:11:02 +0000 (23:11 +0000)]
(cvs-commit-buffer-require-final-newline, cvs-changelog-full-paragraphs): Add
obsolescence declaration and remove redundant info from docstring.
Juanma Barranquero [Wed, 5 Feb 2003 23:09:58 +0000 (23:09 +0000)]
(font-lock-reference-face): Add obsolescence declaration and remove redundant
info from docstring.
Kim F. Storm [Wed, 5 Feb 2003 22:04:02 +0000 (22:04 +0000)]
(ido-define-mode-map):
Undo last change (duplicates part of 2003-02-04 change).
Remap `viper' delete commands only in file or dir mode.
Kim F. Storm [Wed, 5 Feb 2003 22:03:09 +0000 (22:03 +0000)]
*** empty log message ***
Kai Großjohann [Wed, 5 Feb 2003 21:03:36 +0000 (21:03 +0000)]
2003-02-05 Kai Gro�ohann <kai.grossjohann@uni-duisburg.de>
Version 2.0.29 released.
* net/tramp.el (tramp-send-region): Protect against
tramp-chunksize being nil.
2003-02-04 Michael Albinus <Michael.Albinus@alcatel.de>
* net/tramp.el (tramp-handle-directory-file-name): Handle the case
PATH is "".
(tramp-completion-handle-file-name-all-completions): Define
`tramp-current-user' locally. See `tramp-parse-passwd'.
(tramp-parse-passwd): For su-alike methods it would be desirable
to return "root@localhost" as default. Unfortunately, we have no
information whether any user name has been typed already. So we
(mis-)use tramp-current-user as indication, assuming it is set in
`tramp-completion-handle-file-name-all-completions'.
(tramp-send-region): Handle the case `tramp-chunksize' is equal
0. I did it accidently. Infinite loop ...
* net/tramp-ftp.el (top-level): eval-after-load "ange-ftp"
'(tramp-disable-ange-ftp). Suggested by Kai.
(tramp-ftp-file-name-handler): `tramp-disable-ange-ftp' not needed
any longer.
* net/tramp-smb.el (tramp-smb-file-name-handler-alist): Apply
`tramp-handle-directory-file-name' in order to profit from Kai's
yesterday changes.
2003-02-03 Kai Gro�ohann <kai.grossjohann@uni-duisburg.de>
* net/tramp.el (tramp-chunksize): Set default to 500 as workaround
for some ssh connections.
(tramp-handle-directory-file-name): New implementation. Not sure
if it works.
2003-01-28 Michael Albinus <Michael.Albinus@alcatel.de>
* net/tramp.el (tramp-get-device): `tramp-make-tramp-file-name'
must not be called with NIL path. It fails in case of
multi-method.
2003-01-27 Michael Albinus <Michael.Albinus@alcatel.de>
* net/tramp.el (tramp-file-name-for-operation): Apply
`expand-file-name' for relative file names only. Otherwise there
might be problems if the default directory is another Tramp
directory as the directory the file is based on.
(tramp-find-foreign-file-name-handler): Check whether FILENAME is
a Tramp file name. It isn't if it comes from an expanded file
name (like "/xx:yy//zz").
2003-01-25 Michael Albinus <Michael.Albinus@alcatel.de>
* net/tramp.el (tramp-devices): New variable. Keeps virtual
device numbers. Devices must distinguish physical file systems.
The device numbers provided by "lstat" aren't unique, because we
operate on different hosts. So we use virtual device numbers,
generated by `tramp-get-device'. Both Ange-FTP and EFS use device
number -1. In order to be different, we use device number (-1 x),
whereby "x" is unique for a given (multi-method method user host).
Suggested by Kai.
(tramp-perl-file-attributes): Always return device number -1.
There will be a virtual device number set in
`tramp-handle-file-attributes', which replaces this one.
(tramp-handle-file-attributes): Set virtual device number.
(tramp-get-device): New function. Returns the virtual device
number. If it doesn't exist, generate a new one.
(tramp-handle-file-regular-p): Use Emacs file name primitives
instead of calling tramp-handle-* equivalents directly. Needed
for tramp-smb.
* net/tramp-smb.el (tramp-smb-devices, tramp-smb-get-device): Removed.
Functionality moved to tramp.el.
(tramp-smb-handle-file-attributes): Apply
`tramp-get-device'. ATIME and CTIME are (0 0) now (= "don't
know"), which is more honest.
(tramp-smb-handle-make-directory): Use Emacs file name primitives
instead of calling tramp-smb-handle-* equivalents directly.
(tramp-smb-read-file-entry): Return size as a number but a string.
2003-01-24 Michael Albinus <Michael.Albinus@alcatel.de>
* net/tramp.el (tramp-completion-function-alist-ssh): Add parsing
of "/etc/ssh_config" and "~/.ssh/config". Suggested by Kai.
(tramp-completion-function-alist, tramp-set-completion-function):
Doc string update.
(tramp-parse-sconfig, tramp-parse-sconfig-group): New functions.
Provide parsing of "~/.ssh/config" style files.
2003-01-21 Michael Albinus <Michael.Albinus@alcatel.de>
* net/tramp.el (tramp-completion-handle-expand-file-name): Apply
`tramp-drop-volume-letter'. Otherwise, there are problems on W32
systems.
2003-01-21 Michael Albinus <Michael.Albinus@alcatel.de>
* net/tramp-smb.el (tramp-smb-get-device, tramp-smb-get-inode): New
functions. Device number and inode number don't exist for SMB
files. Therefore we must generate virtual ones.
(tramp-smb-devices, tramp-smb-inodes): New variables. Keep
generated virtual device numbers and inodes numbers for SMB files.
(tramp-smb-handle-file-attributes): Apply them.
2003-01-14 Kai Gro�ohann <kai.grossjohann@uni-duisburg.de>
* net/tramp.el (tramp-md5-function): Require md5 before checking
function md5. If using md5-encode, put wrapper around it that
converts vector of bytes to ascii text.
2003-01-13 Michael Albinus <Michael.Albinus@alcatel.de>
* net/tramp.el (tramp-completion-mode): Perform check (integerp
last-input-event) before (event-modifiers last-input-event) -
there might be problems if `last-input-event' is a mouse event.
2003-01-12 Michael Albinus <Michael.Albinus@alcatel.de>
* net/tramp.el (tramp-parse-rhosts, tramp-parse-shosts)
(tramp-parse-hosts, tramp-parse-passwd, tramp-parse-netrc): Use
`file-readable-p' instead of `file-exists-p'. Otherwise these
functions might block. Reported by <kin@neoscale.com>.
2003-01-02 Michael Albinus <Michael.Albinus@alcatel.de>
* net/tramp-ftp.el (top-level): Defaults for
`tramp-default-method-alist' must be a list.
* net/tramp-smb.el (top-level): Defaults for
`tramp-default-method-alist' must be a list.
2003-01-02 Kai Gro�ohann <kai.grossjohann@uni-duisburg.de>
* net/tramp.el (top-level): Avoid byte-compiler warnings of unused
variables if the byte-compiler supports this. This is for the
with-parsed-tramp-file-name macro which is wont to produce such
stuff.
Kai Großjohann [Wed, 5 Feb 2003 20:12:56 +0000 (20:12 +0000)]
(ido-define-mode-map): Interact with Viper. From Kim F
Storm.
Kai Großjohann [Wed, 5 Feb 2003 20:10:58 +0000 (20:10 +0000)]
2003-02-05 Kai Gro�ohann <kai.grossjohann@uni-duisburg.de>
Version 2.0.29 released.
* tramp.texi (Installation): In Emacs, use M-x
texinfo-format-buffer RET, not M-x makeinfo-buffer RET. Reported
by gebser@ameritech.net.
2003-02-01 Michael Albinus <Michael.Albinus@alcatel.de>
* tramp.texi (Frequently Asked Questions): Explain a workaround if
another package loads accidently Ange-FTP.
2003-01-24 Michael Albinus <Michael.Albinus@alcatel.de>
* tramp.texi (Customizing Completion): Add function
`tramp-parse-sconfig'. Change example of
`tramp-set-completion-function', because parsing of ssh config
files looks more natural.
Stefan Monnier [Wed, 5 Feb 2003 19:09:34 +0000 (19:09 +0000)]
(eval-when-compile-load-eval, completion-eval-when)
(cmpl-read-time-eval, minibuffer-window-selected-p): Remove.
(completion-min-length, completion-max-length)
(completion-prefix-min-length): Don't hard-code the default value
when byte-compiling.
(complete): Inline minibuffer-window-selected-p.
Markus Rost [Wed, 5 Feb 2003 17:09:34 +0000 (17:09 +0000)]
Regenerated. (Followup to white space changes and mh directory change.)
David Kastrup [Wed, 5 Feb 2003 15:08:42 +0000 (15:08 +0000)]
fix iota accent typos in greek-babel
encoding.
Dave Love [Tue, 4 Feb 2003 18:36:25 +0000 (18:36 +0000)]
*** empty log message ***
Juanma Barranquero [Tue, 4 Feb 2003 17:07:42 +0000 (17:07 +0000)]
Restore missing space and put a comment to protect it from being deleted as
trailing whitespace.
Juanma Barranquero [Tue, 4 Feb 2003 16:06:31 +0000 (16:06 +0000)]
Restore missing space and put a comment to protect it from being deleted as
trailing whitespace.
Juanma Barranquero [Tue, 4 Feb 2003 14:56:31 +0000 (14:56 +0000)]
Trailing whitespace deleted.
Juanma Barranquero [Tue, 4 Feb 2003 13:30:45 +0000 (13:30 +0000)]
Trailing whitespace deleted.
Juanma Barranquero [Tue, 4 Feb 2003 13:24:35 +0000 (13:24 +0000)]
Trailing whitepace deleted.
Juanma Barranquero [Tue, 4 Feb 2003 12:29:42 +0000 (12:29 +0000)]
Trailing whitespace deleted.
Richard M. Stallman [Tue, 4 Feb 2003 12:03:59 +0000 (12:03 +0000)]
*** empty log message ***
Richard M. Stallman [Tue, 4 Feb 2003 12:03:44 +0000 (12:03 +0000)]
(push_score, read_scores): Cast values of malloc and realloc.
(main, lock_file): Avoid assignment inside if.
Richard M. Stallman [Tue, 4 Feb 2003 12:00:09 +0000 (12:00 +0000)]
Whitespace changes.
Richard M. Stallman [Tue, 4 Feb 2003 11:51:40 +0000 (11:51 +0000)]
(echo_now): Update before_command_echo_length.
(Freset_this_command_lengths): Reset this_command_key_count etc.
immediately rather than arranging to do it later.
(before_command_key_count_1, before_command_echo_length_1)
(before_command_restore_flag): Vars deleted.
(add_command_key): Don't handle before_command_restore_flag.
(read_char, record_menu_key): Don't update before_command_key_count or
before_command_echo_length.
(read_char): Don't handle before_command_restore_flag.
(command_loop_1): Don't call adjust_point_for_property
in direct-output clauses if it wouldn't be called in the ordinary case.
Richard M. Stallman [Tue, 4 Feb 2003 11:44:38 +0000 (11:44 +0000)]
(Glossary): Correction to Common Lisp cross reference.
Richard M. Stallman [Tue, 4 Feb 2003 11:43:01 +0000 (11:43 +0000)]
(term-raw-map): Set it up at load time.
(term-char-mode): Don't set up term-raw-map here.
(term-set-escape-char): Don't set up C-x subcommand.
(term-ansi-face-already-done): Renamed from
term-ansi-face-alredy-done.
(term-command-hook): Avoid error if STRING is empty.
(term, term-mode): Doc fixes.
Redesign handling of colors and faces.
Delete all the faces that this mode used to make.
(ansi-term-color-vector): New variable.
(ansi-term-fg-faces-vector, ansi-term-bg-faces-vector)
(ansi-term-inv-bg-faces-vector, ansi-term-inv-fg-faces-vector):
Variables deleted.
(term-default-fg-color, term-default-bg-color): Use defcustom.
(term-handle-colors-array): Use ansi-term-color-vector,
and specify face attributes rather than faces in `face' property.
(term-ansi-fg-faces-vector, term-ansi-bg-faces-vector)
(term-ansi-inv-fg-faces-vector, term-ansi-inv-bg-faces-vector)
(term-ansi-reverse-faces-vector): Unused variables deleted.
(term-ignore-error): Macro deleted.
Juanma Barranquero [Tue, 4 Feb 2003 11:29:35 +0000 (11:29 +0000)]
(image-type-regexps): Fix typo.
Juanma Barranquero [Tue, 4 Feb 2003 11:26:42 +0000 (11:26 +0000)]
Trailing whitespace deleted.
Francesco Potortì [Tue, 4 Feb 2003 10:58:53 +0000 (10:58 +0000)]
(rmail-output): If preserving MIME-version, preserve Content-type too.
Francesco Potortì [Tue, 4 Feb 2003 10:58:37 +0000 (10:58 +0000)]
*** empty log message ***
Richard M. Stallman [Tue, 4 Feb 2003 10:41:10 +0000 (10:41 +0000)]
(back-to-indentation): Skip all whitespace except for newlines.
Richard M. Stallman [Tue, 4 Feb 2003 10:40:14 +0000 (10:40 +0000)]
(find-alternate-file): Handle dired-directory like buffer-file-name.
Richard M. Stallman [Tue, 4 Feb 2003 10:39:35 +0000 (10:39 +0000)]
(dired-find-buffer-nocreate): Avoid error if dired-directory is nil.
Richard M. Stallman [Tue, 4 Feb 2003 10:38:29 +0000 (10:38 +0000)]
Make first page fit, and other updates.