(Buffer-menu-mode-map): Add docstring.
(Buffer-menu-buffer): Fix indentation.
(list-buffers-noselect): Calculate header-line spacing to take
into account width of left fringe and left scrollbar.
(Fkill_buffer): Use Frun_hook_with_args_until_failure
to run kill-buffer-query-functions.
(Qkill_buffer_query_functions): New var.
(syms_of_buffer): Init and staticpro it.
Rob Browning [Mon, 3 Mar 2003 18:29:58 +0000 (18:29 +0000)]
* configure.in: add AC_CHECK_FUNCS for memcmp and memmove.
(AH_BOTTOM): switch tests to prefer memcmp, memset, and memmove
over bzero, bcmp, and bcopy.
Andreas Schwab [Sun, 2 Mar 2003 23:33:56 +0000 (23:33 +0000)]
(Info-fontify-node): Don't hide indentation before the
reference name. Don't process a reference twice when a new tag is
inserted.
(Info-hide-note-references): Fix doc and customize type.
Matthew Swift [Sun, 2 Mar 2003 16:18:36 +0000 (16:18 +0000)]
(emacs-lisp-docstring-fill-column): New custom variable.
(lisp-fill-paragraph): Use it. Add ?, to `paragraph-separate' so
that first docstring lines ending with a comma are respected. Add
"`(" to same so that function and macro bodies beginning with a
backquote do not get disturbed. Revise the comments.
Kai Großjohann [Fri, 28 Feb 2003 18:28:47 +0000 (18:28 +0000)]
Version 2.0.30 released.
Replace term "path" with "localname" unless it is used for a
search path.
(tramp-handle-expand-file-name): Allow ".." to cross host
boundaries.
(tramp-open-connection-setup-interactive-shell): Unset $ENV in
addition to setting $PS1 when starting the Bourne-ish shell. Some
sh implementations (eg, bash when called as sh) read the file
named there on startup, which could clobber $PS1.
(tramp-do-copy-or-rename-file-one-local): New function. Not
implemented. Not used. Should invoke rcp or scp directly to keep
the time.
Matthew Swift [Wed, 26 Feb 2003 10:59:58 +0000 (10:59 +0000)]
* startup.el: Streamline code in several functions and use a more
consistent idiom within the file, for ease of reading and
maintenance. Rephrase booleans to avoid `(not noninteractive)'.
Clarify several booleans expressions using De Morgan's laws.
(command-line): Fix barf when first command-line option handled by
`command-line-1' is in the form --OPT=VAL.
(command-line-1): Restore intended behavior of the --directory/-L
command-line option: "-L a -L b -L c" on the command-line now puts
'(a b c) at the front of `load-path'.
(gamegrid-add-score): Add info to docstring.
(gamegrid-add-score-with-update-game-score-1): New function, factored out of
`gamegriod-add-score-with-update-game-score'.
(gamegrid-add-score-with-update-game-score): Use it. Fall back on
`gamegrid-add-score-insecure' if the requested file does not exist in
$(gamedir), in case the user has installed a game on his own.
(gamegrid-add-score-insecure): Accept optional directory argument.
Kim F. Storm [Tue, 25 Feb 2003 12:33:32 +0000 (12:33 +0000)]
(redisplay_window): Fix infinite loop in redisplay.
If centering point failed to make whole line visible and vscroll
is non-zero, disable vscroll and try centering point again.
Dave Love [Mon, 24 Feb 2003 22:51:41 +0000 (22:51 +0000)]
(read-envvar-name): Decode names.
(substitute-env-vars): Use eval-when-compile and char class.
(setenv): Doc fix. Encode the data (after checking that's
possible).
(getenv): Encode the name and decode the result.
(query-replace-read-args): Return just 3 values.
(query-replace, query-replace-regexp)
(query-replace-regexp-eval, map-query-replace-regexp)
(replace-string, replace-regexp): Read the start and end args
separately so that the expressions are recorded in command-history.
(inhibit-startup-hooks): New variable.
(normal-top-level): Obey that variable.
(command-line-1): Run emacs-startup-hook before term-setup-hook.
Set inhibit-startup-hooks too.
(fix_command): New subroutine, from Fcall_interactively.
Detect (when ... (region-beginning)) etc.
(Fcall_interactively): Call fix_command.
(Qif, Qwhen): New variables.
(syms_of_callint): Init and staticpro them.
Kai Großjohann [Sun, 23 Feb 2003 10:48:29 +0000 (10:48 +0000)]
(directory_files_internal): Don't expand directory.
(Fdirectory_files, Fdirectory_files_and_attributes): Do it here
instead. From Lars Hansen <larsh@math.ku.dk>.