]> git.eshelyaron.com Git - emacs.git/log
emacs.git
21 years ago(ido-define-mode-map):
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.

21 years ago*** empty log message ***
Kim F. Storm [Wed, 5 Feb 2003 22:03:09 +0000 (22:03 +0000)]
*** empty log message ***

21 years ago2003-02-05 Kai Gro�ohann <kai.grossjohann@uni-duisburg.de>
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.

21 years ago(ido-define-mode-map): Interact with Viper. From Kim F
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.

21 years ago2003-02-05 Kai Gro�ohann <kai.grossjohann@uni-duisburg.de>
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.

21 years ago(eval-when-compile-load-eval, completion-eval-when)
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.

21 years agoRegenerated. (Followup to white space changes and mh directory change.)
Markus Rost [Wed, 5 Feb 2003 17:09:34 +0000 (17:09 +0000)]
Regenerated.  (Followup to white space changes and mh directory change.)

21 years agofix iota accent typos in greek-babel
David Kastrup [Wed, 5 Feb 2003 15:08:42 +0000 (15:08 +0000)]
fix iota accent typos in greek-babel
encoding.

21 years ago*** empty log message ***
Dave Love [Tue, 4 Feb 2003 18:36:25 +0000 (18:36 +0000)]
*** empty log message ***

21 years agoRestore missing space and put a comment to protect it from being deleted as
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.

21 years agoRestore missing space and put a comment to protect it from being deleted as
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.

21 years agoTrailing whitespace deleted.
Juanma Barranquero [Tue, 4 Feb 2003 14:56:31 +0000 (14:56 +0000)]
Trailing whitespace deleted.

21 years agoTrailing whitespace deleted.
Juanma Barranquero [Tue, 4 Feb 2003 13:30:45 +0000 (13:30 +0000)]
Trailing whitespace deleted.

21 years agoTrailing whitepace deleted.
Juanma Barranquero [Tue, 4 Feb 2003 13:24:35 +0000 (13:24 +0000)]
Trailing whitepace deleted.

21 years agoTrailing whitespace deleted.
Juanma Barranquero [Tue, 4 Feb 2003 12:29:42 +0000 (12:29 +0000)]
Trailing whitespace deleted.

21 years ago*** empty log message ***
Richard M. Stallman [Tue, 4 Feb 2003 12:03:59 +0000 (12:03 +0000)]
*** empty log message ***

21 years ago(push_score, read_scores): Cast values of malloc and realloc.
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.

21 years agoWhitespace changes.
Richard M. Stallman [Tue, 4 Feb 2003 12:00:09 +0000 (12:00 +0000)]
Whitespace changes.

21 years ago(echo_now): Update before_command_echo_length.
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.

21 years ago(Glossary): Correction to Common Lisp cross reference.
Richard M. Stallman [Tue, 4 Feb 2003 11:44:38 +0000 (11:44 +0000)]
(Glossary): Correction to Common Lisp cross reference.

21 years ago(term-raw-map): Set it up at load time.
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.

21 years ago(image-type-regexps): Fix typo.
Juanma Barranquero [Tue, 4 Feb 2003 11:29:35 +0000 (11:29 +0000)]
(image-type-regexps): Fix typo.

21 years agoTrailing whitespace deleted.
Juanma Barranquero [Tue, 4 Feb 2003 11:26:42 +0000 (11:26 +0000)]
Trailing whitespace deleted.

21 years ago(rmail-output): If preserving MIME-version, preserve Content-type too.
Francesco Potortì [Tue, 4 Feb 2003 10:58:53 +0000 (10:58 +0000)]
(rmail-output): If preserving MIME-version, preserve Content-type too.

21 years ago*** empty log message ***
Francesco Potortì [Tue, 4 Feb 2003 10:58:37 +0000 (10:58 +0000)]
*** empty log message ***

21 years ago(back-to-indentation): Skip all whitespace except for newlines.
Richard M. Stallman [Tue, 4 Feb 2003 10:41:10 +0000 (10:41 +0000)]
(back-to-indentation): Skip all whitespace except for newlines.

21 years ago(find-alternate-file): Handle dired-directory like buffer-file-name.
Richard M. Stallman [Tue, 4 Feb 2003 10:40:14 +0000 (10:40 +0000)]
(find-alternate-file): Handle dired-directory like buffer-file-name.

21 years ago(dired-find-buffer-nocreate): Avoid error if dired-directory is nil.
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.

21 years agoMake first page fit, and other updates.
Richard M. Stallman [Tue, 4 Feb 2003 10:38:29 +0000 (10:38 +0000)]
Make first page fit, and other updates.

21 years ago(syms_of_keyboard) <this-original-command>: Doc fix.
Kim F. Storm [Mon, 3 Feb 2003 22:52:07 +0000 (22:52 +0000)]
(syms_of_keyboard) <this-original-command>: Doc fix.

21 years ago*** empty log message ***
Kim F. Storm [Mon, 3 Feb 2003 22:51:45 +0000 (22:51 +0000)]
*** empty log message ***

21 years ago(ido-define-mode-map): Remap viper delete char/word
Kim F. Storm [Mon, 3 Feb 2003 22:33:13 +0000 (22:33 +0000)]
(ido-define-mode-map): Remap viper delete char/word
commands to their ido specific equivalents.  Disable ESC in
viper mode (to avoid exiting insert mode), since ido doesn't
work in viper command mode.
(ido-delete-backward-updir, ido-delete-backward-word-updir):
Handle remapped viper commands.

21 years agoUpgraded to MH-E version 7.2.
Bill Wohler [Mon, 3 Feb 2003 20:55:30 +0000 (20:55 +0000)]
Upgraded to MH-E version 7.2.
See etc/MH-E-NEWS and lisp/mh-e/ChangeLog for details.

21 years agoFix spacing.
Juanma Barranquero [Mon, 3 Feb 2003 16:39:05 +0000 (16:39 +0000)]
Fix spacing.

21 years ago(calculator): Don't use the minibuffer even in electric mode; use a private
Juanma Barranquero [Mon, 3 Feb 2003 16:31:35 +0000 (16:31 +0000)]
(calculator): Don't use the minibuffer even in electric mode; use a private
buffer and display it in the minibuffer window using `set-window-buffer'.

21 years ago*** empty log message ***
Dave Love [Mon, 3 Feb 2003 15:00:57 +0000 (15:00 +0000)]
*** empty log message ***

21 years agoFix header-line when scrollbar is on left and/or fringe isn't one char wide.
Jonathan Yavner [Sun, 2 Feb 2003 19:16:23 +0000 (19:16 +0000)]
Fix header-line when scrollbar is on left and/or fringe isn't one char wide.

21 years agoFix memory leak.
Jan Djärv [Sun, 2 Feb 2003 18:54:32 +0000 (18:54 +0000)]
Fix memory leak.

21 years ago(asm-font-lock-keywords): Allow arbitrary
Andreas Schwab [Sun, 2 Feb 2003 17:35:47 +0000 (17:35 +0000)]
(asm-font-lock-keywords): Allow arbitrary
words separated by dots.  Match optional parenthesized word at
start of line.

21 years ago(font-lock-match-c-style-declaration-item-and-skip-to-next):
Andreas Schwab [Sun, 2 Feb 2003 17:31:49 +0000 (17:31 +0000)]
(font-lock-match-c-style-declaration-item-and-skip-to-next):
Don't require underscore in word before double open-paren.

21 years ago(hexl-mode-map): Bind C-m to `hexl-self-insert-command'.
John Paul Wallington [Sun, 2 Feb 2003 16:04:59 +0000 (16:04 +0000)]
(hexl-mode-map): Bind C-m to `hexl-self-insert-command'.

21 years agoUpdated image support on MS Windows
Jason Rumney [Sun, 2 Feb 2003 00:19:39 +0000 (00:19 +0000)]
Updated image support on MS Windows

21 years agoMore image notes.
Jason Rumney [Sun, 2 Feb 2003 00:14:19 +0000 (00:14 +0000)]
More image notes.

21 years ago*** empty log message ***
Jason Rumney [Sun, 2 Feb 2003 00:01:45 +0000 (00:01 +0000)]
*** empty log message ***

21 years agoAutomatically detect libXpm.
Jason Rumney [Sun, 2 Feb 2003 00:01:25 +0000 (00:01 +0000)]
Automatically detect libXpm.
Suppress compiler output when testing for image libraries.
Give names of un-found libraries in messages.

21 years ago(w32_create_pixmap_from_bitmap_data): Use alloca for
Jason Rumney [Sat, 1 Feb 2003 23:54:34 +0000 (23:54 +0000)]
(w32_create_pixmap_from_bitmap_data): Use alloca for
local malloc.
[HAVE_XPM]: Avoid clashes with XColor, XImage and Pixel
definitions in xpm.h.
(init_xpm_functions): New function.
(xpm_load): Sync with xfns.c. Adapt for Windows version of libXpm.
(init_external_image_libraries): Try to load libXpm.dll.

21 years agoTime Stamps: template must have space between quotation marks.
Stephen Gildea [Sat, 1 Feb 2003 14:35:11 +0000 (14:35 +0000)]
Time Stamps: template must have space between quotation marks.

21 years agotime-stamp.el
Stephen Gildea [Sat, 1 Feb 2003 14:30:08 +0000 (14:30 +0000)]
time-stamp.el

21 years agoUpdate example date in preamble commentary.
Stephen Gildea [Sat, 1 Feb 2003 14:29:31 +0000 (14:29 +0000)]
Update example date in preamble commentary.
(time-stamp): Fix parsing of "%%a" in time-stamp-pattern (change
regexp subpattern 5)
(time-stamp-pattern): Initialize to nil to avoid regexp work in
default case.
(time-stamp-string): Call set-time-zone-rule instead of setenv
(time-stamp-hhmmss): Remove (not needed after all).
(time-stamp-month-dd-yyyy, time-stamp-dd/mm/yyyy,
time-stamp-mon-dd-yyyy, time-stamp-dd-mon-yy, time-stamp-yy/mm/dd,
time-stamp-yyyy/mm/dd, time-stamp-yyyy-mm-dd, time-stamp-yymmdd,
time-stamp-hh:mm:ss, time-stamp-hhmm): Make obsolete.
(time-stamp-format, time-stamp-pattern, time-stamp-warn-inactive,
time-stamp-inserts-lines, time-stamp-count, time-stamp-time-zone,
time-stamp, time-stamp-toggle-active, time-stamp-string-preprocess,
time-stamp-once, time-stamp-conv-warn): Tweak doc strings.

21 years ago(Fcopy_file) [WINDOWSNT]: Reverse logic for setting
Jason Rumney [Sat, 1 Feb 2003 01:22:38 +0000 (01:22 +0000)]
(Fcopy_file) [WINDOWSNT]: Reverse logic for setting
timestamp.

21 years ago(custom-unlispify-menu-entry): Use with-current-buffer.
Stefan Monnier [Sat, 1 Feb 2003 00:39:58 +0000 (00:39 +0000)]
(custom-unlispify-menu-entry): Use with-current-buffer.
(custom-save-variables): Use dolist, simplify.
Output a message if a `requests' entry looks suspicious.
(custom-save-faces): Use dolist, simplify.

21 years agoVersion 2.2b
Juanma Barranquero [Fri, 31 Jan 2003 20:43:22 +0000 (20:43 +0000)]
Version 2.2b

21 years ago(Skipping Characters): Multibyte conversion and
Dave Love [Fri, 31 Jan 2003 16:28:28 +0000 (16:28 +0000)]
(Skipping Characters): Multibyte conversion and
char classes in skip-chars-forward.

21 years ago(Fskip_chars_forward)
Dave Love [Fri, 31 Jan 2003 15:39:48 +0000 (15:39 +0000)]
(Fskip_chars_forward)
(open-paren-in-column-0-is-defun-start): Doc fix.

21 years agoFix typo.
Juanma Barranquero [Fri, 31 Jan 2003 15:28:46 +0000 (15:28 +0000)]
Fix typo.

21 years agoCygwin support patch.
Juanma Barranquero [Fri, 31 Jan 2003 15:24:20 +0000 (15:24 +0000)]
Cygwin support patch.

21 years agoInitial revision.
Juanma Barranquero [Fri, 31 Jan 2003 15:05:24 +0000 (15:05 +0000)]
Initial revision.

21 years ago(rmail-forward-separator-regex): New custom variable.
Francesco Potortì [Fri, 31 Jan 2003 14:01:20 +0000 (14:01 +0000)]
(rmail-forward-separator-regex): New custom variable.
(unforward-rmail-message): Use it.

21 years ago*** empty log message ***
Francesco Potortì [Fri, 31 Jan 2003 14:00:46 +0000 (14:00 +0000)]
*** empty log message ***

21 years ago*** empty log message ***
Juanma Barranquero [Fri, 31 Jan 2003 11:03:57 +0000 (11:03 +0000)]
*** empty log message ***

21 years agoAutomatically detect tifflib.
Juanma Barranquero [Fri, 31 Jan 2003 11:03:11 +0000 (11:03 +0000)]
Automatically detect tifflib.

21 years ago(init_tiff_functions): New function.
Juanma Barranquero [Fri, 31 Jan 2003 10:59:13 +0000 (10:59 +0000)]
(init_tiff_functions): New function.
(tiff_load): Adjust colors for Windows. Disable color table lookups. Call
library functions through pointers determined at runtime.
(init_external_image_libraries): Try to load libtiff.dll.

21 years ago*** empty log message ***
Juanma Barranquero [Fri, 31 Jan 2003 07:27:59 +0000 (07:27 +0000)]
*** empty log message ***

21 years agoAutomatically detect giflib.
Juanma Barranquero [Fri, 31 Jan 2003 07:23:20 +0000 (07:23 +0000)]
Automatically detect giflib.

21 years ago(DrawText): Kludge to avoid a redefinition on Windows when including gif_lib.h.
Juanma Barranquero [Fri, 31 Jan 2003 07:20:13 +0000 (07:20 +0000)]
(DrawText): Kludge to avoid a redefinition on Windows when including gif_lib.h.
(init_gif_functions): New function.
(gif_load): Sync with xfns.c version. Adjust colors for Windows. Disable color
table lookups. Call gif library functions through pointers determined at
runtime.
(init_external_image_libraries): Try to load libungif.dll.

21 years ago(syms_of_coding): Add `...' for symbols in the docstring of
Kenichi Handa [Fri, 31 Jan 2003 04:03:07 +0000 (04:03 +0000)]
(syms_of_coding): Add `...' for symbols in the docstring of
`coding-system-require-warning'.

21 years ago(SKIP_GLYPHS): New macro.
Kenichi Handa [Fri, 31 Jan 2003 03:53:43 +0000 (03:53 +0000)]
(SKIP_GLYPHS): New macro.
(set_cursor_from_row): Skip all glyphs that comes from overlay
string.

21 years ago*** empty log message ***
Kenichi Handa [Fri, 31 Jan 2003 03:53:24 +0000 (03:53 +0000)]
*** empty log message ***

21 years ago(lookup-words): Fix last change.
Dave Love [Thu, 30 Jan 2003 22:59:07 +0000 (22:59 +0000)]
(lookup-words): Fix last change.

21 years ago*** empty log message ***
John Paul Wallington [Thu, 30 Jan 2003 18:58:22 +0000 (18:58 +0000)]
*** empty log message ***

21 years agoUpdate email and real name
Jan Djärv [Thu, 30 Jan 2003 17:21:51 +0000 (17:21 +0000)]
Update email and real name

21 years agoChange email and real name.
Jan Djärv [Thu, 30 Jan 2003 17:19:28 +0000 (17:19 +0000)]
Change email and real name.

21 years agogtkutil.c (free_frame_tool_bar): Removed debug printf.
Jan Djärv [Thu, 30 Jan 2003 17:14:48 +0000 (17:14 +0000)]
gtkutil.c (free_frame_tool_bar): Removed debug printf.

21 years ago*** empty log message ***
Dave Love [Thu, 30 Jan 2003 14:27:00 +0000 (14:27 +0000)]
*** empty log message ***

21 years ago(Vgc_elapsed, gcs_done): New variables.
Dave Love [Thu, 30 Jan 2003 14:15:58 +0000 (14:15 +0000)]
(Vgc_elapsed, gcs_done): New variables.
(Fgarbage_collect): Use them.
(init_alloc, syms_of_alloc): Set them up.

21 years ago(init_external_image_libraries): Add missing operator.
Juanma Barranquero [Thu, 30 Jan 2003 07:21:10 +0000 (07:21 +0000)]
(init_external_image_libraries): Add missing operator.

21 years ago*** empty log message ***
Jason Rumney [Wed, 29 Jan 2003 23:35:27 +0000 (23:35 +0000)]
*** empty log message ***

21 years agoDisable cygpath kludge.
Jason Rumney [Wed, 29 Jan 2003 23:33:08 +0000 (23:33 +0000)]
Disable cygpath kludge.

21 years ago(init_external_image_libraries): Allow jpeg-62.dll as
Jason Rumney [Wed, 29 Jan 2003 23:31:11 +0000 (23:31 +0000)]
(init_external_image_libraries): Allow jpeg-62.dll as
an alternative name for jpeg.dll.

21 years ago* font-lock.el (lisp-font-lock-keywords-1): Match `deftheme'.
John Paul Wallington [Wed, 29 Jan 2003 21:45:56 +0000 (21:45 +0000)]
* font-lock.el (lisp-font-lock-keywords-1): Match `deftheme'.

* emacs-lisp/lisp-mode.el (toplevel): Define docstring offset for
`deftheme'.  Fix docstring offsets for `define-ibuffer-filter' and
`define-ibuffer-sorter'.
(lisp-imenu-generic-expression): Add `deftheme' to types.

* custom.el (customize-mark-to-save, customize-mark-as-set)
(custom-remove-theme): Doc fixes.

21 years ago2003-01-29 Didier Verna <didier@xemacs.org>
John Paul Wallington [Wed, 29 Jan 2003 21:44:18 +0000 (21:44 +0000)]
2003-01-29  Didier Verna  <didier@xemacs.org>

* cus-edit.el (custom-save-variables): also save non theme'd ones.
* cus-edit.el (custom-save-faces): ditto.

21 years agoFix typos in description of image properties.
Juanma Barranquero [Wed, 29 Jan 2003 15:52:39 +0000 (15:52 +0000)]
Fix typos in description of image properties.

21 years ago(set_cursor_from_row): Pay attention to string display properties.
Kenichi Handa [Wed, 29 Jan 2003 13:12:46 +0000 (13:12 +0000)]
(set_cursor_from_row): Pay attention to string display properties.

21 years ago*** empty log message ***
Kenichi Handa [Wed, 29 Jan 2003 13:12:27 +0000 (13:12 +0000)]
*** empty log message ***

21 years ago(cperl-beautify-level, cperl-beautify-regexp): Fix use of
Juanma Barranquero [Wed, 29 Jan 2003 12:18:13 +0000 (12:18 +0000)]
(cperl-beautify-level, cperl-beautify-regexp): Fix use of
`prefix-numeric-value'.
(cperl-calculate-indent): Fix typo.

21 years ago(reftex-TeX-master-file): Use really the buffer file name if no other master
Juanma Barranquero [Wed, 29 Jan 2003 11:54:35 +0000 (11:54 +0000)]
(reftex-TeX-master-file): Use really the buffer file name if no other master
file is located.

21 years ago(x-set-cut-buffer): Fix docstring. Check type with `stringp' instead of
Juanma Barranquero [Wed, 29 Jan 2003 09:19:46 +0000 (09:19 +0000)]
(x-set-cut-buffer): Fix docstring. Check type with `stringp' instead of
`substring'.

21 years ago(decompose-composite-char): Fix docstring.
Juanma Barranquero [Wed, 29 Jan 2003 08:56:40 +0000 (08:56 +0000)]
(decompose-composite-char): Fix docstring.

21 years ago*** empty log message ***
Juanma Barranquero [Wed, 29 Jan 2003 07:38:42 +0000 (07:38 +0000)]
*** empty log message ***

21 years agoAvoid endless loop when configuring without image support.
Juanma Barranquero [Wed, 29 Jan 2003 07:37:34 +0000 (07:37 +0000)]
Avoid endless loop when configuring without image support.

21 years ago(archive-lzh-summarize): Fix previous change.
Juanma Barranquero [Wed, 29 Jan 2003 07:24:26 +0000 (07:24 +0000)]
(archive-lzh-summarize): Fix previous change.

21 years agoRegenerated using new format (after fixing numerous
Kim F. Storm [Wed, 29 Jan 2003 00:16:33 +0000 (00:16 +0000)]
Regenerated using new format (after fixing numerous
formatting errors in the ChangeLog files).

21 years ago*** empty log message ***
Kim F. Storm [Wed, 29 Jan 2003 00:16:14 +0000 (00:16 +0000)]
*** empty log message ***

21 years agoNew format of AUTHORS file; list each
Kim F. Storm [Wed, 29 Jan 2003 00:13:11 +0000 (00:13 +0000)]
New format of AUTHORS file; list each
author name once followed by contributed and changed files.
Improve selection of entries to include in list, and generate list
of unrecognized entries indicating syntax errors in ChangeLog files.
(authors-coding-system): New variable.
(authors-many-files): Update doc string.
(authors-aliases): Change format. Now one entry with multiple
aliases per author.
(authors-valid-file-names, authors-renamed-files-alist)
(authors-renamed-files-regexps): New variables.
(authors-canonical-file-name): New function.  Validates that file
exists or occurs in one of the above lists.  Record unrecognized
file names in global authors-invalid-file-names list.
(authors-add): Change to record per-change counts.
(authors-canonical-author-name): Handle new format of
authors-aliases list.
(authors-scan-change-log): Rename FILE arg to LOG-FILE.
Change doc string to describe new entry format.
Only add author entries for valid file names.
(authors-print): Replace by authors-add-to-author-list.
(authors-add-to-author-list): New function which reorders
per-file entries and adds them to global authors-author-list.
(authors): Instead of authors-print to insert in *Authors* buffer,
use authors-add-to-author-list to reorder the list and then
insert result in *Authors* buffer with new format.
Generate *Authors Errors* compilation-mode buffer listing
unrecognized ChangeLog entries.

21 years agoCorrected misc. typos like missing : after file names,
Kim F. Storm [Tue, 28 Jan 2003 23:49:11 +0000 (23:49 +0000)]
Corrected misc. typos like missing : after file names,
missing file name suffixes, and * used as prefix on non-file entries.

21 years ago2003-01-28 Benjamin Riefenstahl <Benjamin.Riefenstahl@epost.de>
Andrew Choi [Tue, 28 Jan 2003 18:46:07 +0000 (18:46 +0000)]
2003-01-28  Benjamin Riefenstahl  <Benjamin.Riefenstahl@epost.de>

        * macterm.c (keycode_to_xkeysym_table): Add <tab>, <backspace>,
        <escape>.
        (keycode_to_xkeysym_table): Reformat and add more comments.
        (XTread_socket): Drop special case for backspace.

        * term/mac-win.el: Add entries in function-key-map for
        [tab], [backspace], [escape].

21 years ago2003-01-28 Andrew Choi <akochoi@shaw.ca>
Andrew Choi [Tue, 28 Jan 2003 17:30:12 +0000 (17:30 +0000)]
2003-01-28  Andrew Choi  <akochoi@shaw.ca>

        * macfns.c (x_to_mac_color): Correct the order for parsing the RGB
        values in old-style RGB specs.

21 years ago(Info-extract-menu-node-name): Another fix for
Kim F. Storm [Tue, 28 Jan 2003 12:08:36 +0000 (12:08 +0000)]
(Info-extract-menu-node-name): Another fix for
2003-01-24 change.  Also stop search if : is followed by TAB.

21 years ago*** empty log message ***
Kim F. Storm [Tue, 28 Jan 2003 12:07:50 +0000 (12:07 +0000)]
*** empty log message ***

21 years ago(ibuffer-yank-filter-group): Move check for empty
John Paul Wallington [Tue, 28 Jan 2003 08:50:17 +0000 (08:50 +0000)]
(ibuffer-yank-filter-group): Move check for empty
filter group kill-ring out of `interactive' declaration.