bpt/emacs.git
16 years ago(XMISCANY, XMARKER, XINTFWD, XBOOLFWD, XOBJFWD, XOVERLAY, XBUFFER_OBJFWD)
Stefan Monnier [Wed, 17 Oct 2007 02:13:01 +0000 (02:13 +0000)]
(XMISCANY, XMARKER, XINTFWD, XBOOLFWD, XOBJFWD, XOVERLAY, XBUFFER_OBJFWD)
(XBUFFER_LOCAL_VALUE, XKBOARD_OBJFWD, XSAVE_VALUE): Add type checks.
(SOME_BUFFER_LOCAL_VALUEP, GC_SOME_BUFFER_LOCAL_VALUEP): Remove.

16 years ago(free_misc): Use XMISCTYPE.
Stefan Monnier [Wed, 17 Oct 2007 02:10:38 +0000 (02:10 +0000)]
(free_misc): Use XMISCTYPE.
(live_misc_p, gc_sweep): Use Lisp_Misc_Any.

16 years ago(eshell-complex-commands): Add "ls".
Chong Yidong [Wed, 17 Oct 2007 02:08:32 +0000 (02:08 +0000)]
(eshell-complex-commands): Add "ls".

16 years ago* eshell/esh-cmd.el (eshell-complex-commands): Add "ls".
Chong Yidong [Wed, 17 Oct 2007 02:08:23 +0000 (02:08 +0000)]
* eshell/esh-cmd.el (eshell-complex-commands): Add "ls".

16 years ago(server-process-filter): Only set display if X11 is
Dan Nicolaescu [Wed, 17 Oct 2007 02:07:35 +0000 (02:07 +0000)]
(server-process-filter): Only set display if X11 is
supported.

16 years agoRemove file, since it's just a duplicate of one in etc/
Glenn Morris [Wed, 17 Oct 2007 01:39:18 +0000 (01:39 +0000)]
Remove file, since it's just a duplicate of one in etc/

16 years ago(cc-imenu-c++-generic-expression): Tweak regexp to avoid overflow.
Glenn Morris [Wed, 17 Oct 2007 01:37:23 +0000 (01:37 +0000)]
(cc-imenu-c++-generic-expression): Tweak regexp to avoid overflow.

16 years ago(Qcompletion_ignore_case): New external Lisp_Object.
Glenn Morris [Wed, 17 Oct 2007 01:32:19 +0000 (01:32 +0000)]
(Qcompletion_ignore_case): New external Lisp_Object.
(Fread_file_name): Use it rather than intern'ing.

16 years ago(Qcompletion_ignore_case): Change to external.
Glenn Morris [Wed, 17 Oct 2007 01:31:14 +0000 (01:31 +0000)]
(Qcompletion_ignore_case): Change to external.
(syms_of_dired) [VMS]: Remove Qcompletion_ignore_case.

16 years ago(Qcompletion_ignore_case): New Lisp_Object.
Glenn Morris [Wed, 17 Oct 2007 01:30:38 +0000 (01:30 +0000)]
(Qcompletion_ignore_case): New Lisp_Object.
(syms_of_minibuf): Add Qcompletion_ignore_case.

16 years ago(Qcompletion_ignore_case): New external Lisp_Object.
Glenn Morris [Wed, 17 Oct 2007 01:29:58 +0000 (01:29 +0000)]
(Qcompletion_ignore_case): New external Lisp_Object.
(Fread_coding_system): Ignore case of user input.

16 years agoMerge from emacs--rel--22
Miles Bader [Tue, 16 Oct 2007 22:39:24 +0000 (22:39 +0000)]
Merge from emacs--rel--22

Revision: emacs@sv.gnu.org/emacs--devo--0--patch-892

16 years ago* xfns.c (Fx_create_frame, Fx_display_list):
Stefan Monnier [Tue, 16 Oct 2007 16:28:39 +0000 (16:28 +0000)]
* xfns.c (Fx_create_frame, Fx_display_list):
* window.c (window_fixed_size_p, enlarge_window, shrink_window_lowest_first):
* macterm.c (init_font_name_table):
* macfns.c (Fx_create_frame, Fx_display_list):
* lread.c (close_load_descs):
* keyboard.c (read_char_x_menu_prompt):
* fns.c (Fmember, Fmemql, Fdelete, Fset_char_table_parent):
* coding.c (code_convert_region_unwind): Test the type of an object
rather than just !NILP before extracting data from it.

16 years ago(Fpurecopy): Set the pvec tag on pseudo vectors.
Stefan Monnier [Tue, 16 Oct 2007 15:49:43 +0000 (15:49 +0000)]
(Fpurecopy): Set the pvec tag on pseudo vectors.

16 years ago* lisp.h (enum Lisp_Misc_Type): Del Lisp_Misc_Some_Buffer_Local_Value.
Stefan Monnier [Tue, 16 Oct 2007 15:42:58 +0000 (15:42 +0000)]
* lisp.h (enum Lisp_Misc_Type): Del Lisp_Misc_Some_Buffer_Local_Value.
(XMISCANY): New macro.
(XMISCTYPE): Use it.
(struct Lisp_Misc_Any): New type.
(union Lisp_Misc): Use it.
(struct Lisp_Buffer_Local_Value): Add `local_if_set' bit.
* data.c (Fboundp, store_symval_forwarding, swap_in_global_binding)
(find_symbol_value, set_internal, default_value, Fset_default)
(Fmake_variable_buffer_local, Fmake_local_variable)
(Fkill_local_variable, Fmake_variable_frame_local, Flocal_variable_p)
(Flocal_variable_if_set_p, Fvariable_binding_locus):
The SOME_BUFFER_LOCAL_VALUEP distinction is replaced by local_if_set.
* alloc.c (allocate_buffer): Set the size and tag.
(allocate_misc, mark_maybe_object, mark_object, survives_gc_p):
Use XMISCANY.
(die): Follow the GNU convention for error messages.
* print.c (print_object): SOME_BUFFER_LOCAL_VALUEP -> local_if_set.
* buffer.c (Fget_buffer_create, Fmake_indirect_buffer): Don't set the
tag any more.
(set_buffer_internal_1):
* frame.c (store_frame_param):
* eval.c (specbind):
* xdisp.c (select_frame_for_redisplay): Drop SOME_BUFFER_LOCAL_VALUEP.

16 years ago(reindent-then-newline-and-indent): Don't assume that
Stefan Monnier [Tue, 16 Oct 2007 15:18:39 +0000 (15:18 +0000)]
(reindent-then-newline-and-indent): Don't assume that
indent-according-to-mode preserves point.

16 years ago*** empty log message ***
Juanma Barranquero [Tue, 16 Oct 2007 11:10:48 +0000 (11:10 +0000)]
*** empty log message ***

16 years ago(bs-mode): Set hooks (accidentally left out in the previous commit).
Juanma Barranquero [Tue, 16 Oct 2007 10:57:28 +0000 (10:57 +0000)]
(bs-mode): Set hooks (accidentally left out in the previous commit).

16 years ago(bs--window-config-coming-from): Revert 2006-11-09 change.
Juanma Barranquero [Tue, 16 Oct 2007 10:52:09 +0000 (10:52 +0000)]
(bs--window-config-coming-from): Revert 2006-11-09 change.
(bs--restore-window-config): Keep the selected frame.
(bs--track-window-changes, bs--remove-hooks): New functions.
(bs-mode): Use `define-derived-mode'.  Set hook to track window changes.
(bs--show-with-configuration): Revert 2006-11-09 change.
Don't reuse window unless it is visible on the selected frame.
Restore window configuration (possibly in a different frame)
before creating any window.

16 years ago(bs--make-header-match-string, bs-show-in-buffer, bs--nth-wrapper): Simplify.
Juanma Barranquero [Tue, 16 Oct 2007 10:40:02 +0000 (10:40 +0000)]
(bs--make-header-match-string, bs-show-in-buffer, bs--nth-wrapper): Simplify.
(bs-select, bs--insert-one-entry): Simplify.  Use `when'.
(bs-buffer-list): Simplify.  Use `when'.  Use `string-match-p'.
(bs-sort-buffer-interns-are-last): Use `string-match-p'.
(bs-attributes-list, bs-max-window-height, bs-must-always-show-regexp,
bs-maximal-buffer-name-column, bs-minimal-buffer-name-column, bs-configurations,
bs-default-configuration, bs-alternative-configuration,
bs-cycle-configuration-name, bs-string-show-always, bs-string-show-never,
bs-string-current, bs-string-current-marked, bs-string-marked,
bs-string-show-normally, bs-sort-functions, bs-default-sort-name):
Remove * in docstrings.
(bs--redisplay, bs--goto-current-buffer, bs--current-buffer, bs-delete,
bs-apply-sort-faces, bs-next-config-aux): Use `when'.
(bs--window-config-coming-from): Revert 2006-11-09 change.
(bs--restore-window-config): Keep the selected frame.
(bs--track-window-changes, bs--remove-hooks): New functions.
(bs-mode): Use `define-derived-mode'.  Set hook to track window changes.
(bs--create-header): Remove.
(bs--create-header-line): New function, based on `bs--create-header'.
(bs--show-header): Use `bs--create-header-line'.
(bs--show-with-configuration): Revert 2006-11-09 change.
Don't reuse window unless it is visible on the selected frame.
Restore window configuration (possibly in a different frame)
before creating any window.

16 years ago(handle_display_prop): Ignore display specs after
YAMAMOTO Mitsuharu [Tue, 16 Oct 2007 09:00:09 +0000 (09:00 +0000)]
(handle_display_prop): Ignore display specs after
replacing one when string text is being replaced.
(handle_single_display_spec): Pretend as if characters with display
property haven't been consumed only when buffer text is being replaced.

16 years ago(Fsnarf_documentation): Simplify.
Stefan Monnier [Tue, 16 Oct 2007 03:28:43 +0000 (03:28 +0000)]
(Fsnarf_documentation): Simplify.

16 years agoRe-fill copyright header.
Glenn Morris [Tue, 16 Oct 2007 02:41:08 +0000 (02:41 +0000)]
Re-fill copyright header.
(blink-matching-open): Don't report false errors with the `$' syntax
class.

16 years ago(ad-get-advice-info): Change to a function.
Richard M. Stallman [Tue, 16 Oct 2007 02:37:33 +0000 (02:37 +0000)]
(ad-get-advice-info): Change to a function.
(ad-get-advice-info-macro): New macro, like old ad-get-advice-info.
(ad-is-advised, ad-get-advice-info-field)
(ad-set-advice-info-field): Use ad-get-advice-info-macro.

16 years ago(ad-get-advice-info): Change to a function.
Richard M. Stallman [Tue, 16 Oct 2007 02:34:58 +0000 (02:34 +0000)]
(ad-get-advice-info): Change to a function.
(ad-get-advice-info-macro): New macro, like old ad-get-advice-info.
(ad-is-advised, ad-get-advice-info-field)
(ad-set-advice-info-field): Use ad-get-advice-info-macro.

16 years ago(Diary): Clarify text about diary file example.
Richard M. Stallman [Tue, 16 Oct 2007 02:24:50 +0000 (02:24 +0000)]
(Diary): Clarify text about diary file example.

16 years agoRevert accidental deletion.
Glenn Morris [Tue, 16 Oct 2007 02:17:51 +0000 (02:17 +0000)]
Revert accidental deletion.

16 years agoRe-fill copyright header.
Glenn Morris [Tue, 16 Oct 2007 02:06:12 +0000 (02:06 +0000)]
Re-fill copyright header.
(blink-matching-open): Don't report false errors with the `$' syntax
class.

16 years ago(vc-workfile-version): Compatibility alias.
Stefan Monnier [Mon, 15 Oct 2007 19:26:25 +0000 (19:26 +0000)]
(vc-workfile-version): Compatibility alias.
(vc-default-working-revision): Compatibility for backends.

16 years ago(filesets-alist-get): Use `let' rather than `let*'.
Juanma Barranquero [Mon, 15 Oct 2007 17:39:35 +0000 (17:39 +0000)]
(filesets-alist-get): Use `let' rather than `let*'.
(filesets-ormap, filesets-sort-case-sensitive-flag, filesets-remake-shortcut,
filesets-ingroup-collect-files): Fix typos in docstrings.
(filesets-data-get-name, filesets-data-get-data, filesets-data-set,
filesets-cmd-query-replace-getargs, filesets-ingroup-collect,
filesets-find-or-display-file): Doc fixes.

16 years ago(filesets-alist-get): Use `let' rather than `let*'.
Juanma Barranquero [Mon, 15 Oct 2007 17:24:36 +0000 (17:24 +0000)]
(filesets-alist-get): Use `let' rather than `let*'.
(filesets-ormap, filesets-sort-case-sensitive-flag, filesets-remake-shortcut,
filesets-ingroup-collect-files): Fix typos in docstrings.
(filesets-conditional-sort, filesets-find-or-display-file,
filesets-data-get-name, filesets-data-get-data, filesets-data-set,
filesets-cmd-query-replace-getargs, filesets-ingroup-collect): Doc fixes.

16 years ago(sendmail-error-reporting-interactive)
Sam Steingold [Mon, 15 Oct 2007 14:38:42 +0000 (14:38 +0000)]
(sendmail-error-reporting-interactive)
(sendmail-error-reporting-non-interactive): New variables for sendmail
error reporting options to simplify support for imperfect sendmail emulators.
(sendmail-send-it): Use them instead of list literals.

16 years agoRevert previous change; it creates a dependency
Juanma Barranquero [Mon, 15 Oct 2007 14:21:23 +0000 (14:21 +0000)]
Revert previous change; it creates a dependency
loop between advice.el and help-fns.el.

16 years agoRequire advice when compiling.
Juanma Barranquero [Mon, 15 Oct 2007 09:33:12 +0000 (09:33 +0000)]
Require advice when compiling.

16 years agoDon't require url when compiling, as url-type is no longer a macro.
YAMAMOTO Mitsuharu [Mon, 15 Oct 2007 08:57:14 +0000 (08:57 +0000)]
Don't require url when compiling, as url-type is no longer a macro.

16 years agoMerge from emacs--rel--22
Miles Bader [Mon, 15 Oct 2007 02:07:53 +0000 (02:07 +0000)]
Merge from emacs--rel--22

Patches applied:

 * emacs--rel--22  (patch 116-121)

   - Update from CVS

Revision: emacs@sv.gnu.org/emacs--devo--0--patch-889

16 years agoRestore deleted entry.
Glenn Morris [Mon, 15 Oct 2007 00:35:19 +0000 (00:35 +0000)]
Restore deleted entry.

16 years ago(w32_font_is_double_byte, my_create_scrollbar): Make static.
Juanma Barranquero [Mon, 15 Oct 2007 00:23:32 +0000 (00:23 +0000)]
(w32_font_is_double_byte, my_create_scrollbar): Make static.
(syms_of_w32term) <w32-enable-unicode-output>: Fix typo in docstring.

16 years ago*** empty log message ***
Richard M. Stallman [Sun, 14 Oct 2007 23:16:07 +0000 (23:16 +0000)]
*** empty log message ***

16 years ago(ring-convert-sequence-to-ring)
Richard M. Stallman [Sun, 14 Oct 2007 22:53:17 +0000 (22:53 +0000)]
(ring-convert-sequence-to-ring)
(ring-insert+extend, ring-remove+insert+extend, ring-member)
(ring-next, ring-previous): New functions.

16 years ago(ring-convert-sequence-to-ring)
Richard M. Stallman [Sun, 14 Oct 2007 22:53:07 +0000 (22:53 +0000)]
(ring-convert-sequence-to-ring)
(ring-insert+extend, ring-remove+insert+extend, ring-member)
(ring-next, ring-previous): New functions.

16 years ago(describe-function-1): Find source of advised functions.
Richard M. Stallman [Sun, 14 Oct 2007 22:49:39 +0000 (22:49 +0000)]
(describe-function-1): Find source of advised functions.

16 years ago(documentation): Advice deleted. Doc for advised functions
Richard M. Stallman [Sun, 14 Oct 2007 22:46:38 +0000 (22:46 +0000)]
(documentation): Advice deleted.  Doc for advised functions
is now handled at C level.
(ad-stop-advice, ad-start-advice): Don't enable or disable
advice for `documentation'.
(ad-advised-definition-docstring-regexp): Var deleted.
(ad-make-advised-definition-docstring): Store orig name
as text property of string.
(ad-advised-definition-p): Check for text property of docstring.

16 years ago*** empty log message ***
Richard M. Stallman [Sun, 14 Oct 2007 22:30:59 +0000 (22:30 +0000)]
*** empty log message ***

16 years ago(fancy-startup-tail): Say exactly what does the button
Juri Linkov [Sun, 14 Oct 2007 20:42:05 +0000 (20:42 +0000)]
(fancy-startup-tail): Say exactly what does the button
dismiss ("Dismiss this startup screen").  Use text "Never show
it again" for the checkbox after this button.
(fancy-startup-screen, fancy-about-screen): Put point before the
first link, so the user can quickly select links with the keyboard.
(normal-mouse-startup-screen): Add more useful text describing how
to follow a link.

16 years ago*** empty log message ***
Juri Linkov [Sun, 14 Oct 2007 20:41:19 +0000 (20:41 +0000)]
*** empty log message ***

16 years ago(ispell-word): Call `ispell-region' on the active region in transient-mark-mode.
Juri Linkov [Sun, 14 Oct 2007 20:40:53 +0000 (20:40 +0000)]
(ispell-word): Call `ispell-region' on the active region in transient-mark-mode.
(ispell-region): Change messages displayed at the start and end of
the spell-checking to be the same.

16 years ago(describe-face): Allow handling a string as the face name.
Juri Linkov [Sun, 14 Oct 2007 20:40:31 +0000 (20:40 +0000)]
(describe-face): Allow handling a string as the face name.

16 years ago(Fmake_indirect_buffer): Set the buffer's tag.
Stefan Monnier [Sun, 14 Oct 2007 19:45:17 +0000 (19:45 +0000)]
(Fmake_indirect_buffer): Set the buffer's tag.

16 years agoLine break fix.
Richard M. Stallman [Sun, 14 Oct 2007 18:53:16 +0000 (18:53 +0000)]
Line break fix.

16 years agoLine break fix.
Richard M. Stallman [Sun, 14 Oct 2007 18:51:21 +0000 (18:51 +0000)]
Line break fix.

16 years ago(Ffset): Save autoload of the function being set.
Juanma Barranquero [Sun, 14 Oct 2007 18:02:05 +0000 (18:02 +0000)]
(Ffset): Save autoload of the function being set.

16 years ago(do_autoload): Don't save autoloads.
Juanma Barranquero [Sun, 14 Oct 2007 18:00:05 +0000 (18:00 +0000)]
(do_autoload): Don't save autoloads.

16 years ago*** empty log message ***
Juanma Barranquero [Sun, 14 Oct 2007 17:30:48 +0000 (17:30 +0000)]
*** empty log message ***

16 years ago(Ffset): Save autoload of the function being set.
Juanma Barranquero [Sun, 14 Oct 2007 17:21:39 +0000 (17:21 +0000)]
(Ffset): Save autoload of the function being set.

16 years ago(do_autoload): Don't save autoloads.
Juanma Barranquero [Sun, 14 Oct 2007 17:20:53 +0000 (17:20 +0000)]
(do_autoload): Don't save autoloads.

16 years ago(select-tags-table): Disable undo in the `*Tags Table List*' buffer.
Glenn Morris [Sun, 14 Oct 2007 02:52:58 +0000 (02:52 +0000)]
(select-tags-table): Disable undo in the `*Tags Table List*' buffer.

16 years ago(select-tags-table): Disable undo in the `*Tags Table List*' buffer.
Glenn Morris [Sun, 14 Oct 2007 02:52:40 +0000 (02:52 +0000)]
(select-tags-table): Disable undo in the `*Tags Table List*' buffer.

16 years agoJohn Paul Wallington <jpw at pobox.com>
Glenn Morris [Sun, 14 Oct 2007 02:50:11 +0000 (02:50 +0000)]
John Paul Wallington  <jpw at pobox.com>

(x_create_tip_frame): Set the `display-type' frame parameter before
setting up faces.

16 years agoComment.
Glenn Morris [Sun, 14 Oct 2007 02:49:58 +0000 (02:49 +0000)]
Comment.

16 years agoJohn Paul Wallington <jpw at pobox.com>
Glenn Morris [Sun, 14 Oct 2007 02:46:53 +0000 (02:46 +0000)]
John Paul Wallington  <jpw at pobox.com>

(x_create_tip_frame): Set the `display-type' frame parameter before
setting up faces.

16 years agomove @dircategory to after @copying
Karl Berry [Sat, 13 Oct 2007 23:48:41 +0000 (23:48 +0000)]
move @dircategory to after @copying

16 years ago(reftex-select-item): Use mapc rather than mapcar.
Glenn Morris [Sat, 13 Oct 2007 23:01:09 +0000 (23:01 +0000)]
(reftex-select-item): Use mapc rather than mapcar.

16 years ago(idlwave-complete-in-buffer): Use mapc rather than mapcar.
Glenn Morris [Sat, 13 Oct 2007 23:00:23 +0000 (23:00 +0000)]
(idlwave-complete-in-buffer): Use mapc rather than mapcar.

16 years ago*** empty log message ***
Glenn Morris [Sat, 13 Oct 2007 22:55:09 +0000 (22:55 +0000)]
*** empty log message ***

16 years ago(append_tool_bar_item): Reformat last change.
Eli Zaretskii [Sat, 13 Oct 2007 20:49:53 +0000 (20:49 +0000)]
(append_tool_bar_item): Reformat last change.

16 years ago(Fregister_code_conversion_map): Reformat last change.
Eli Zaretskii [Sat, 13 Oct 2007 20:47:44 +0000 (20:47 +0000)]
(Fregister_code_conversion_map): Reformat last change.

16 years ago*** empty log message ***
Eli Zaretskii [Sat, 13 Oct 2007 20:20:14 +0000 (20:20 +0000)]
*** empty log message ***

16 years ago(dired-warn-writable): New face.
Eli Zaretskii [Sat, 13 Oct 2007 20:14:23 +0000 (20:14 +0000)]
(dired-warn-writable): New face.
(dired-warn-writable-face): New variable.
(dired-font-lock-keywords): Use dired-warn-writable-face, instead of
dired-warning-face, for group- and world-writable files.

16 years ago(octave-looking-at-kw): Add doc string.
Glenn Morris [Sat, 13 Oct 2007 20:09:14 +0000 (20:09 +0000)]
(octave-looking-at-kw): Add doc string.
(octave-re-search-forward-kw, octave-re-search-backward-kw):
Add doc string, and an explicit COUNT argument.
(octave-scan-blocks, octave-beginning-of-defun): Explicitly pass
INC to search functions.

16 years ago*** empty log message ***
Glenn Morris [Sat, 13 Oct 2007 20:08:38 +0000 (20:08 +0000)]
*** empty log message ***

16 years ago(octave-looking-at-kw): Add doc string.
Glenn Morris [Sat, 13 Oct 2007 20:08:01 +0000 (20:08 +0000)]
(octave-looking-at-kw): Add doc string.
(octave-re-search-forward-kw, octave-re-search-backward-kw):
Add doc string, and an explicit COUNT argument.
(octave-scan-blocks, octave-beginning-of-defun): Explicitly pass
INC to search functions.

16 years agoJohn W. Eaton <jwe at octave.org>
Glenn Morris [Sat, 13 Oct 2007 20:01:54 +0000 (20:01 +0000)]
John W. Eaton  <jwe at octave.org>

(octave-looking-at-kw)
(octave-re-search-forward-kw, octave-re-search-backward-kw): New functions.
(octave-in-defun-p, calculate-octave-indent)
(octave-blink-matching-block-open, octave-beginning-of-defun)
(octave-auto-fill): Use octave-looking-at-kw instead of looking-at,
to search for regexps that contain case-sensitive keywords.
(octave-beginning-of-defun): Likewise, for octave-re-search-backward-kw.
(octave-scan-blocks): Likewise, for octave-re-search-forward-kw.

16 years agoJohn W. Eaton <jwe at octave.org>
Glenn Morris [Sat, 13 Oct 2007 20:01:38 +0000 (20:01 +0000)]
John W. Eaton  <jwe at octave.org>

(octave-looking-at-kw)
(octave-re-search-forward-kw, octave-re-search-backward-kw): New functions.
(octave-in-defun-p, calculate-octave-indent)
(octave-blink-matching-block-open, octave-beginning-of-defun)
(octave-auto-fill): Use octave-looking-at-kw instead of looking-at,
to search for regexps that contain case-sensitive keywords.
(octave-beginning-of-defun): Likewise, for octave-re-search-backward-kw.
(octave-scan-blocks): Likewise, for octave-re-search-forward-kw.

16 years ago(face-spec-set): When FRAME is nil, set the default for
Glenn Morris [Sat, 13 Oct 2007 19:36:10 +0000 (19:36 +0000)]
(face-spec-set): When FRAME is nil, set the default for
new frames (restores pre-2007-09-17 behavior).  Doc fix.

16 years ago(woman-ignore): Fix doc typo.
Glenn Morris [Sat, 13 Oct 2007 19:36:00 +0000 (19:36 +0000)]
(woman-ignore): Fix doc typo.

16 years agoDo not use a single clause cond.
Dan Nicolaescu [Sat, 13 Oct 2007 17:57:47 +0000 (17:57 +0000)]
Do not use a single clause cond.

16 years ago* frame.el (select-frame-set-input-focus): Fix typo
Dan Nicolaescu [Sat, 13 Oct 2007 16:50:36 +0000 (16:50 +0000)]
* frame.el (select-frame-set-input-focus): Fix typo
"max" -> "mac". Do not use a single clause cond.

16 years ago* cus-start.el (all): Use test that does not match the X11 version
Dan Nicolaescu [Sat, 13 Oct 2007 16:36:05 +0000 (16:36 +0000)]
* cus-start.el (all): Use test that does not match the X11 version
for mac.

16 years ago(directory-abbrev-alist): Doc fix.
Richard M. Stallman [Sat, 13 Oct 2007 14:10:21 +0000 (14:10 +0000)]
(directory-abbrev-alist): Doc fix.

16 years ago(url-default-expander): Use `url-file-directory'.
Richard M. Stallman [Sat, 13 Oct 2007 14:04:06 +0000 (14:04 +0000)]
(url-default-expander): Use `url-file-directory'.

16 years ago(url-digest-auth, url-basic-auth):
Richard M. Stallman [Sat, 13 Oct 2007 14:03:25 +0000 (14:03 +0000)]
(url-digest-auth, url-basic-auth):
Rename `path' to `file'.  Use `url-file-directory'.

16 years ago(url-basepath): Function deleted.
Richard M. Stallman [Sat, 13 Oct 2007 14:02:50 +0000 (14:02 +0000)]
(url-basepath): Function deleted.
(url-file-directory, url-file-nondirectory): New functions
replacing url-basepath.  Callers changed.

16 years ago(ebrowse-tree-mode): Disable undo in the BROWSE buffer.
Eli Zaretskii [Sat, 13 Oct 2007 12:55:26 +0000 (12:55 +0000)]
(ebrowse-tree-mode): Disable undo in the BROWSE buffer.

16 years agoReplace `abs' with `eabs'.
Eli Zaretskii [Sat, 13 Oct 2007 12:48:57 +0000 (12:48 +0000)]
Replace `abs' with `eabs'.

16 years ago(eabs): Rename from `abs'. All callers changed.
Eli Zaretskii [Sat, 13 Oct 2007 12:40:15 +0000 (12:40 +0000)]
(eabs): Rename from `abs'.  All callers changed.

16 years ago(grow_menu_items): Use larger_vector.
Eli Zaretskii [Sat, 13 Oct 2007 12:11:14 +0000 (12:11 +0000)]
(grow_menu_items): Use larger_vector.

16 years ago(GROW_RAW_KEYBUF, menu_bar_items, menu_bar_item, append_tool_bar_item): Use
Eli Zaretskii [Sat, 13 Oct 2007 12:08:42 +0000 (12:08 +0000)]
(GROW_RAW_KEYBUF, menu_bar_items, menu_bar_item, append_tool_bar_item): Use
larger_vector.

16 years ago(make_fontset): Use larger_vector.
Eli Zaretskii [Sat, 13 Oct 2007 12:07:41 +0000 (12:07 +0000)]
(make_fontset): Use larger_vector.

16 years ago(Fregister_ccl_program, Fregister_code_conversion_map): Use larger_vector.
Eli Zaretskii [Sat, 13 Oct 2007 12:06:41 +0000 (12:06 +0000)]
(Fregister_ccl_program, Fregister_code_conversion_map): Use larger_vector.

16 years ago(add_overlay_mod_hooklist): Use larger_vector.
Eli Zaretskii [Sat, 13 Oct 2007 12:06:04 +0000 (12:06 +0000)]
(add_overlay_mod_hooklist): Use larger_vector.

16 years ago(dos_rawgetc): Undo last change (there's no ``leaving selected frame''
Eli Zaretskii [Sat, 13 Oct 2007 11:54:57 +0000 (11:54 +0000)]
(dos_rawgetc): Undo last change (there's no ``leaving selected frame''
on MSDOS).

16 years ago(comint-password-prompt-regexp): Add 'LDAP'.
Eli Zaretskii [Sat, 13 Oct 2007 11:34:19 +0000 (11:34 +0000)]
(comint-password-prompt-regexp): Add 'LDAP'.

16 years ago(dos_rawgetc): Undo last change (there's no ``leaving selected frame''
Eli Zaretskii [Sat, 13 Oct 2007 11:25:52 +0000 (11:25 +0000)]
(dos_rawgetc): Undo last change (there's no ``leaving selected frame''
on MSDOS).

16 years agoClarification requested by RMS.
Eric S. Raymond [Sat, 13 Oct 2007 10:54:45 +0000 (10:54 +0000)]
Clarification requested by RMS.

16 years ago* cus-start.el (all): Undo previous change.
Dan Nicolaescu [Sat, 13 Oct 2007 09:14:27 +0000 (09:14 +0000)]
* cus-start.el (all): Undo previous change.

16 years agoCapitalize node names according to convention.
Eric S. Raymond [Sat, 13 Oct 2007 07:24:20 +0000 (07:24 +0000)]
Capitalize node names according to convention.

16 years ago(erc-modified-channels-update): Use mapc rather than mapcar.
Glenn Morris [Sat, 13 Oct 2007 03:04:55 +0000 (03:04 +0000)]
(erc-modified-channels-update): Use mapc rather than mapcar.

16 years ago(feedmail-run-the-queue)
Glenn Morris [Sat, 13 Oct 2007 03:03:54 +0000 (03:03 +0000)]
(feedmail-run-the-queue)
(feedmail-look-at-queue-directory): Use mapc rather than mapcar.

16 years ago(reporter-dump-state): Use mapc rather than mapcar.
Glenn Morris [Sat, 13 Oct 2007 03:03:35 +0000 (03:03 +0000)]
(reporter-dump-state): Use mapc rather than mapcar.