bpt/emacs.git
19 years ago* makefile.w32-in (obj): Add all files (X and Mac) to doc so the
Jan Djärv [Tue, 9 Nov 2004 08:18:58 +0000 (08:18 +0000)]
* makefile.w32-in (obj): Add all files (X and Mac) to doc so the
resulting DOC file can be used on Unix/Mac also.

19 years ago* sed1v2.inp: Use djecho for buildobj.lst.
Jan Djärv [Tue, 9 Nov 2004 08:18:05 +0000 (08:18 +0000)]
* sed1v2.inp: Use djecho for buildobj.lst.

* sed1.inp: Ditto.

19 years agoFix previous change.
Kenichi Handa [Tue, 9 Nov 2004 05:29:28 +0000 (05:29 +0000)]
Fix previous change.

19 years agoChange coding: tag back to iso-2022-7bit.
Kenichi Handa [Tue, 9 Nov 2004 05:19:08 +0000 (05:19 +0000)]
Change coding: tag back to iso-2022-7bit.

19 years ago*** empty log message ***
Jay Belanger [Tue, 9 Nov 2004 05:01:55 +0000 (05:01 +0000)]
*** empty log message ***

19 years ago(calc-init-extensions): Bound calc-yank to mouse-2.
Jay Belanger [Tue, 9 Nov 2004 04:49:01 +0000 (04:49 +0000)]
(calc-init-extensions):  Bound calc-yank to mouse-2.

19 years ago(calc-mode-hook, calc-trail-mode-hook, calc-start-hook, calc-end-hook)
Jay Belanger [Tue, 9 Nov 2004 04:43:03 +0000 (04:43 +0000)]
(calc-mode-hook, calc-trail-mode-hook, calc-start-hook, calc-end-hook)
(calc-load-hook):  New variables.

(calc, calc-trail-display, calc-mode):  Removed obsolete sections.

(calc-x-paste-text):  Removed.

19 years agoRevision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-679
Miles Bader [Tue, 9 Nov 2004 04:38:27 +0000 (04:38 +0000)]
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-679

Merge from gnus--rel--5.10

Patches applied:

 * miles@gnu.org--gnu-2004/gnus--rel--5.10--patch-69
   Merge from emacs--cvs-trunk--0

 * miles@gnu.org--gnu-2004/gnus--rel--5.10--patch-70
   Update from CVS

2004-11-07  Katsumi Yamaoka  <yamaoka@jpl.org>

   * lisp/gnus/gnus-msg.el (gnus-configure-posting-styles): Don't cause the
   "Args out of range" error.  Reported by Arnaud Giersch
   <arnaud.giersch@free.fr>.

19 years agoThis bug was fixed by RMS on 2004-11-02:
Kim F. Storm [Mon, 8 Nov 2004 23:52:54 +0000 (23:52 +0000)]
This bug was fixed by RMS on 2004-11-02:

** scroll-preserve-screen-position doesn't work with a header-line-format

From: jbyler+emacs-lists@anon41.eml.cc
Date: Tue, 17 Aug 2004 17:10:14 -0400

There seems to be an off-by-one error triggered by using a header line
together with scroll-preserve-screen-position.  The symptom: instead of
staying in the same position on the screen when scrolling, the cursor
moves one screen line down each time the buffer is scrolled.  Put
another way: repeatedly typing C-v M-v or using a mouse scroll wheel to
scroll up and down causes the cursor to migrate slowly down the screen
instead of staying put as it should.

To reproduce:

emacs -q --no-site-file
(setq scroll-preserve-screen-position t)
(setq header-line-format "")
C-v M-v C-v M-v C-v M-v etc.

19 years agoFixed bug:
Kim F. Storm [Mon, 8 Nov 2004 23:37:16 +0000 (23:37 +0000)]
Fixed bug:

** line-spacing and garbage in fringe

From: SAITO Takuya <tabmore@rivo.mediatti.net>
Date: Mon, 31 May 2004 02:08:05 +0900 (JST)

Start emacs -Q and evaluate below with C-xC-e:

(let ((lines 2)
      (spacing 1))
  (setq line-spacing spacing
indicate-buffer-boundaries t)
  (insert (make-string (window-height) ?\n))
  (goto-char (point-min))
  (message (make-string (* (window-width) lines) ?.))
  (scroll-up 1))

then, garbage is displayed in right fringe.

Above code reproduces this bug with
(frame-parameter nil 'font)
=> "-Adobe-Courier-Medium-R-Normal--12-120-75-75-M-70-ISO8859-1"

If you use different font, you may need different value of
`lines' and/or `spacing'.

19 years ago(update_window_fringes): Update fringe bitmaps if
Kim F. Storm [Mon, 8 Nov 2004 23:34:12 +0000 (23:34 +0000)]
(update_window_fringes): Update fringe bitmaps if
cur and row ends_at_zv_p differs.  If bitmaps of a row is updated,
also update previous row to get rid of misc. artifacts.

19 years ago*** empty log message ***
Kim F. Storm [Mon, 8 Nov 2004 23:32:56 +0000 (23:32 +0000)]
*** empty log message ***

19 years ago(select-safe-coding-system-interactively):
Stefan Monnier [Mon, 8 Nov 2004 23:03:30 +0000 (23:03 +0000)]
(select-safe-coding-system-interactively):
New function extracted from select-safe-coding-system.
(select-safe-coding-system): Use it.

19 years agoFixed this bug:
Kim F. Storm [Mon, 8 Nov 2004 22:30:00 +0000 (22:30 +0000)]
Fixed this bug:

** Mouse-face overlay bleeds into header line

From: Stephen Berman <Stephen.Berman@gmx.net>
Date: Thu, 21 Oct 2004 18:11:01 +0200

Mouse-face overlays bleed into the header line when the beginning of
the overlay is above (point-min).  To reproduce:

1. Start Emacs with -q -no-site-file.

2. In *scratch* eval

(progn (setq ov (make-overlay 66 92))
       (overlay-put ov 'mouse-face 'highlight)
       (setq header-line-format "test"))

3. Drag the mouse over the string "evaluation.\n;; If you want" and
notice the highlighting of only this string.

4. Now click on the down arrow in the scroll bar until the line
beginning ";; If you want" is directly below the header line.

5. Drag the mouse over ";; If you want" and notice that not only it
but also the header line are highlighted.

19 years ago(note_mouse_highlight): Clear mouse face if we move out of text area.
Kim F. Storm [Mon, 8 Nov 2004 22:25:30 +0000 (22:25 +0000)]
(note_mouse_highlight): Clear mouse face if we move out of text area.

19 years ago*** empty log message ***
Kim F. Storm [Mon, 8 Nov 2004 22:24:51 +0000 (22:24 +0000)]
*** empty log message ***

19 years ago(fast_find_position): Fix start pos if header line present.
Kim F. Storm [Mon, 8 Nov 2004 22:12:13 +0000 (22:12 +0000)]
(fast_find_position): Fix start pos if header line present.

19 years ago*** empty log message ***
Kim F. Storm [Mon, 8 Nov 2004 22:11:40 +0000 (22:11 +0000)]
*** empty log message ***

19 years ago(gdb-current-stack-level): New variable.
Nick Roberts [Mon, 8 Nov 2004 21:16:33 +0000 (21:16 +0000)]
(gdb-current-stack-level): New variable.
(gdb-info-frames-custom, gdb-frame-handler): Use it to find
current frame (in case of recursive calls).
(gdb-show-changed-values): Add :version keyword.

19 years ago*** empty log message ***
Nick Roberts [Mon, 8 Nov 2004 21:15:50 +0000 (21:15 +0000)]
*** empty log message ***

19 years ago*** empty log message ***
Richard M. Stallman [Mon, 8 Nov 2004 17:00:42 +0000 (17:00 +0000)]
*** empty log message ***

19 years ago(next-error group, face): Move before first use.
Richard M. Stallman [Mon, 8 Nov 2004 16:59:43 +0000 (16:59 +0000)]
(next-error group, face): Move before first use.
(next-error-highlight, next-error-highlight-no-select): Likewise.

(line-move-invisible-p): Renamed from line-move-invisible.
(line-move): New args NOERROR and TO-END.
Return t if if succeed in moving specified number of lines.
(move-end-of-line): New function.

(beginning-of-buffer-other-window, end-of-buffer-other-window):
Use with-no-warnings.

19 years ago(syntax-after): Doc fix.
Richard M. Stallman [Mon, 8 Nov 2004 16:55:56 +0000 (16:55 +0000)]
(syntax-after): Doc fix.

19 years ago(Syntax Table Functions): Add syntax-after.
Richard M. Stallman [Mon, 8 Nov 2004 16:55:07 +0000 (16:55 +0000)]
(Syntax Table Functions): Add syntax-after.

19 years ago*** empty log message ***
Richard M. Stallman [Mon, 8 Nov 2004 16:46:59 +0000 (16:46 +0000)]
*** empty log message ***

19 years ago(show-paren-function): Change calls to syntax-after
Richard M. Stallman [Mon, 8 Nov 2004 16:45:17 +0000 (16:45 +0000)]
(show-paren-function): Change calls to syntax-after
for new way of returning the value.

19 years ago(menu-bar-file-menu): Make this the real name
Richard M. Stallman [Mon, 8 Nov 2004 16:44:15 +0000 (16:44 +0000)]
(menu-bar-file-menu): Make this the real name
and menu-bar-files-menu the alias.  Use the former.
(global-map): Use `file', not `files', as the symbol.

19 years ago(Info-revert-find-node): Don't use beginning-of-buffer.
Richard M. Stallman [Mon, 8 Nov 2004 16:43:00 +0000 (16:43 +0000)]
(Info-revert-find-node): Don't use beginning-of-buffer.

19 years ago(filesets-spawn-external-viewer, filesets-run-cmd):
Richard M. Stallman [Mon, 8 Nov 2004 16:42:25 +0000 (16:42 +0000)]
(filesets-spawn-external-viewer, filesets-run-cmd):
Don't use beginning-of-buffer.
(filesets-cmd-show-result): Use with-no-warnings.

19 years agoComment changes.
Richard M. Stallman [Mon, 8 Nov 2004 16:40:33 +0000 (16:40 +0000)]
Comment changes.

19 years ago(bootstrap-clean): Copy ldefs-boot.el onto
Eli Zaretskii [Mon, 8 Nov 2004 14:05:40 +0000 (14:05 +0000)]
(bootstrap-clean): Copy ldefs-boot.el onto
loaddefs.el, unless the latter exists and is newer.

19 years ago(mostlyclean, distclean, maintainer-clean)
Eli Zaretskii [Mon, 8 Nov 2004 13:56:55 +0000 (13:56 +0000)]
(mostlyclean, distclean, maintainer-clean)
(extraclean, bootfast): New targets.
(top_distclean): New macro, used by distclean, maintainer-clean,
and extraclean.
(.PHONY): Add bootfast.
(bootstrap): Make bootstrap-after in lisp.
(bootstrap-clean-before): Clean in man, lispref, and lispintro as
well.

19 years ago*** empty log message ***
Eli Zaretskii [Mon, 8 Nov 2004 13:02:27 +0000 (13:02 +0000)]
*** empty log message ***

19 years ago(HAVE_BZERO): Define for GCC v3.x and later.
Eli Zaretskii [Mon, 8 Nov 2004 13:01:50 +0000 (13:01 +0000)]
(HAVE_BZERO): Define for GCC v3.x and later.

19 years ago(compile): Don't overwrite last command in minibuffer history
Juri Linkov [Mon, 8 Nov 2004 12:19:14 +0000 (12:19 +0000)]
(compile): Don't overwrite last command in minibuffer history
with default command if they are not equal.

19 years ago*** empty log message ***
Juri Linkov [Mon, 8 Nov 2004 12:18:33 +0000 (12:18 +0000)]
*** empty log message ***

19 years agoMove #include "systime.h" before <sys/resource.h>.
Eli Zaretskii [Mon, 8 Nov 2004 12:04:07 +0000 (12:04 +0000)]
Move #include "systime.h" before <sys/resource.h>.
Don't include <sys/time.h> explicitly.
Include <stdio.h> unconditionally, not just on MacOS.

19 years ago*** empty log message ***
Jay Belanger [Mon, 8 Nov 2004 02:37:02 +0000 (02:37 +0000)]
*** empty log message ***

19 years ago(math-do-integral-methods): Try linear, then non-linear, substitutions.
Jay Belanger [Mon, 8 Nov 2004 02:21:11 +0000 (02:21 +0000)]
(math-do-integral-methods):  Try linear, then non-linear, substitutions.

19 years ago(fontset_pattern_regexp): Cancel my previous change;
Kenichi Handa [Mon, 8 Nov 2004 00:38:48 +0000 (00:38 +0000)]
(fontset_pattern_regexp): Cancel my previous change;
don't pay attention to '\' before '*'.
(fontset_pattern_regexp): Change the meaning of the second arg.
(Fnew_fontset): Call fs_query_fontset, not Fquery_fontset.
(check_fontset_name): Try NAME as literal at first, and if it
failes, try NAME as pattern.

19 years ago*** empty log message ***
Jay Belanger [Mon, 8 Nov 2004 00:27:05 +0000 (00:27 +0000)]
*** empty log message ***

19 years ago(math-linear-subst-tried): New variable.
Jay Belanger [Sun, 7 Nov 2004 23:33:29 +0000 (23:33 +0000)]
(math-linear-subst-tried): New variable.

(math-do-integral):  Set `math-linear-subst-tried' to nil.

(math-do-integral-methods):  Use `math-linear-subst-tried' to
determine what type of substitution to try.

(math-integ-try-linear-substituion):  Set `math-linear-subst-tried' to
t.

19 years ago(bootstrap, bootstrap-clean-before): Remove .elc
Kim F. Storm [Sun, 7 Nov 2004 23:27:18 +0000 (23:27 +0000)]
(bootstrap, bootstrap-clean-before): Remove .elc
files before building.
(bootfast, bootstrap-clean-before-fast): New targets, like
bootstrap but don't remove .elc files.

19 years ago*** empty log message ***
Kim F. Storm [Sun, 7 Nov 2004 23:27:02 +0000 (23:27 +0000)]
*** empty log message ***

19 years ago(bootstrap-clean): New target for 'make bootstrap'.
Kim F. Storm [Sun, 7 Nov 2004 23:23:57 +0000 (23:23 +0000)]
(bootstrap-clean): New target for 'make bootstrap'.

19 years ago*** empty log message ***
Richard M. Stallman [Sun, 7 Nov 2004 22:51:22 +0000 (22:51 +0000)]
*** empty log message ***

19 years ago* emacs.c (Fdump_emacs): Only output warning on GNU/Linux.
Jan Djärv [Sun, 7 Nov 2004 21:59:19 +0000 (21:59 +0000)]
* emacs.c (Fdump_emacs): Only output warning on GNU/Linux.

19 years ago(info-lookup): Allow reusing in the current buffer
Juri Linkov [Sun, 7 Nov 2004 20:52:51 +0000 (20:52 +0000)]
(info-lookup): Allow reusing in the current buffer
not only *info* buffer, but all (even renamed) Info buffers
by checking for major-mode instead of *info* buffer name.
(c-mode, autoconf-mode, emacs-lisp-mode, scheme-mode)
(octave-mode, maxima-mode) <doc-spec>:
Allow long dashes generated by Texinfo 4.7 before definitions.
(texinfo-mode) <doc-spec>: Add space to suffix to find command
definitions with argument separated by space.

19 years ago*** empty log message ***
Juri Linkov [Sun, 7 Nov 2004 20:52:25 +0000 (20:52 +0000)]
*** empty log message ***

19 years agoDon't declare Fmsdos_downcase_filename.
Andreas Schwab [Sun, 7 Nov 2004 11:08:45 +0000 (11:08 +0000)]
Don't declare Fmsdos_downcase_filename.

19 years agoDeclare Fmsdos_downcase_filename.
Andreas Schwab [Sun, 7 Nov 2004 11:06:32 +0000 (11:06 +0000)]
Declare Fmsdos_downcase_filename.

19 years ago* dosfns.c (Fdos_memget, Fdos_memput): Use integer variable offs in
Jan Djärv [Sun, 7 Nov 2004 09:13:26 +0000 (09:13 +0000)]
* dosfns.c (Fdos_memget, Fdos_memput): Use integer variable offs in
comparisons with integers instead of Lisp_Object address.
(Fmsdos_set_keyboard): Declare argument allkeys.

* msdos.c (IT_set_frame_parameters): Use EQ, not ==, for Lisp_Object:s.

* dired.c: extern declare Fmsdos_downcase_filename on MSDOS to avoid
int/Lisp_Object mixup.

* fileio.c: Ditto.

19 years agoeditfns.c: Adding in better patch
Steven Tamm [Sun, 7 Nov 2004 05:57:58 +0000 (05:57 +0000)]
editfns.c: Adding in better patch

19 years agoeditfns.c: Need to include sys/time.h before resource.h on darwin.
Steven Tamm [Sun, 7 Nov 2004 05:57:08 +0000 (05:57 +0000)]
editfns.c: Need to include sys/time.h before resource.h on darwin.

19 years ago(syntax-after): Return the syntax letter, not the raw code.
Richard M. Stallman [Sun, 7 Nov 2004 04:10:38 +0000 (04:10 +0000)]
(syntax-after): Return the syntax letter, not the raw code.

19 years ago(elp-results): Delete wasteful beginning-of-buffer.
Richard M. Stallman [Sun, 7 Nov 2004 04:09:31 +0000 (04:09 +0000)]
(elp-results): Delete wasteful beginning-of-buffer.

19 years ago(iso-cvt-define-menu): menu-bar-files-menu renamed to menu-bar-file-menu.
Richard M. Stallman [Sun, 7 Nov 2004 04:08:15 +0000 (04:08 +0000)]
(iso-cvt-define-menu): menu-bar-files-menu renamed to menu-bar-file-menu.

19 years ago(browse-url-gnome-moz-program)
Richard M. Stallman [Sun, 7 Nov 2004 04:00:18 +0000 (04:00 +0000)]
(browse-url-gnome-moz-program)
(browse-url-gnome-moz-arguments): Move up before first use.

19 years ago(tramp group): Add :version.
Richard M. Stallman [Sun, 7 Nov 2004 03:59:21 +0000 (03:59 +0000)]
(tramp group): Add :version.

19 years ago(ada-gdb-application): Use goto-char instead of beginning-of-buffer.
Richard M. Stallman [Sun, 7 Nov 2004 03:58:37 +0000 (03:58 +0000)]
(ada-gdb-application): Use goto-char instead of beginning-of-buffer.

19 years ago(cperl-info-on-command): Use goto-char instead of beginning-of-buffer.
Richard M. Stallman [Sun, 7 Nov 2004 03:57:24 +0000 (03:57 +0000)]
(cperl-info-on-command): Use goto-char instead of beginning-of-buffer.

19 years ago(idlwave-shell-examine-map): Move up before first use.
Richard M. Stallman [Sun, 7 Nov 2004 03:56:09 +0000 (03:56 +0000)]
(idlwave-shell-examine-map): Move up before first use.
(idlwave-shell-temp-pro-file): Likewise.
(idlwave-shell-temp-rinfo-save-file): Likewise.
(idlwave-shell-temp-file): Minor doc fix.

19 years ago(flyspell-external-point-words): Use goto-char instead of beginning-of-buffer.
Richard M. Stallman [Sun, 7 Nov 2004 03:52:04 +0000 (03:52 +0000)]
(flyspell-external-point-words): Use goto-char instead of beginning-of-buffer.

19 years ago(command_loop_1): Change Vtransient_mark_mode
Richard M. Stallman [Sun, 7 Nov 2004 03:50:11 +0000 (03:50 +0000)]
(command_loop_1): Change Vtransient_mark_mode
before deciding whether to inctivate mark.

19 years ago(Fcall_interactively): Avoid reusing EVENT for other data.
Richard M. Stallman [Sun, 7 Nov 2004 03:48:56 +0000 (03:48 +0000)]
(Fcall_interactively): Avoid reusing EVENT for other data.

19 years ago(merge_named_face): GCPRO the face_name in the
Richard M. Stallman [Sun, 7 Nov 2004 03:47:09 +0000 (03:47 +0000)]
(merge_named_face): GCPRO the face_name in the
named_merge_point struct that we make.
(merge_face_heights): Eliminate GCPRO arg.  All callers changed.

19 years agoWhitespace fixup.
Andreas Schwab [Sun, 7 Nov 2004 01:57:27 +0000 (01:57 +0000)]
Whitespace fixup.

19 years ago(tramp-uudecode): Mention `uudecode -o /dev/stdout'.
Kai Großjohann [Sat, 6 Nov 2004 20:32:24 +0000 (20:32 +0000)]
(tramp-uudecode): Mention `uudecode -o /dev/stdout'.

19 years ago(tramp-coding-commands): Additionally try "uudecode -o /dev/stdout"
Kai Großjohann [Sat, 6 Nov 2004 20:27:16 +0000 (20:27 +0000)]
(tramp-coding-commands): Additionally try "uudecode -o /dev/stdout"
before trying "uudecode -o -".  Suggested by Han Boetes.

19 years ago(recentf-menu-path): Use menu item name.
David Ponce [Sat, 6 Nov 2004 18:27:56 +0000 (18:27 +0000)]
(recentf-menu-path): Use menu item name.

19 years ago*** empty log message ***
David Ponce [Sat, 6 Nov 2004 18:27:36 +0000 (18:27 +0000)]
*** empty log message ***

19 years agoDocument get-internal-run-time.
Eli Zaretskii [Sat, 6 Nov 2004 17:05:42 +0000 (17:05 +0000)]
Document get-internal-run-time.

19 years ago*** empty log message ***
Eli Zaretskii [Sat, 6 Nov 2004 17:04:23 +0000 (17:04 +0000)]
*** empty log message ***

19 years ago(Processor Run Time): New section documenting get-internal-run-time.
Eli Zaretskii [Sat, 6 Nov 2004 17:03:18 +0000 (17:03 +0000)]
(Processor Run Time): New section documenting get-internal-run-time.

19 years ago(sxhash): As far as possible, merge calculation of
Eli Zaretskii [Sat, 6 Nov 2004 17:01:27 +0000 (17:01 +0000)]
(sxhash): As far as possible, merge calculation of
hash code for symbols and strings.

19 years ago(Fget_internal_run_time): New function.
Eli Zaretskii [Sat, 6 Nov 2004 17:00:37 +0000 (17:00 +0000)]
(Fget_internal_run_time): New function.
(syms_of_data): Defsubr it.

19 years ago*** empty log message ***
Eli Zaretskii [Sat, 6 Nov 2004 16:54:06 +0000 (16:54 +0000)]
*** empty log message ***

19 years agoRegenerate.
Eli Zaretskii [Sat, 6 Nov 2004 16:53:38 +0000 (16:53 +0000)]
Regenerate.

19 years agoAdd check for getrusage.
Eli Zaretskii [Sat, 6 Nov 2004 16:29:08 +0000 (16:29 +0000)]
Add check for getrusage.

19 years ago(install, maintainer-clean): Don't use "elisp-*" as it nukes elisp-cover.texi.
Eli Zaretskii [Sat, 6 Nov 2004 16:17:45 +0000 (16:17 +0000)]
(install, maintainer-clean): Don't use "elisp-*" as it nukes elisp-cover.texi.
(dist): Change elisp-[0-9] to elisp-[1-9], as there could be no elisp-0 etc.

19 years agoDon't call define-fringe-bitmap if the display doesn't support images.
Eli Zaretskii [Sat, 6 Nov 2004 16:07:10 +0000 (16:07 +0000)]
Don't call define-fringe-bitmap if the display doesn't support images.

19 years ago(tempo-match-finder): Doc fix.
Andreas Schwab [Sat, 6 Nov 2004 14:49:45 +0000 (14:49 +0000)]
(tempo-match-finder): Doc fix.

19 years ago(easy-menu-get-map): Fix last change.
Andreas Schwab [Sat, 6 Nov 2004 14:43:43 +0000 (14:43 +0000)]
(easy-menu-get-map): Fix last change.

19 years agoChange log entry reconstructed from commit message.
Andreas Schwab [Sat, 6 Nov 2004 14:41:21 +0000 (14:41 +0000)]
Change log entry reconstructed from commit message.

19 years agoDocument changes in behavior of hide-body.
Eli Zaretskii [Sat, 6 Nov 2004 12:15:10 +0000 (12:15 +0000)]
Document changes in behavior of hide-body.

19 years ago*** empty log message ***
Eli Zaretskii [Sat, 6 Nov 2004 12:12:23 +0000 (12:12 +0000)]
*** empty log message ***

19 years ago(hide-body): Don't hide lines at the top of the file
Eli Zaretskii [Sat, 6 Nov 2004 12:10:38 +0000 (12:10 +0000)]
(hide-body): Don't hide lines at the top of the file
that precede the first header line.

19 years ago(align-areas): Delete whitespace before reindenting, so
Eli Zaretskii [Sat, 6 Nov 2004 12:06:18 +0000 (12:06 +0000)]
(align-areas): Delete whitespace before reindenting, so
that tabs are never placed after spaces.

19 years ago(syms_of_frame): Fix the example in the doc string.
Eli Zaretskii [Sat, 6 Nov 2004 11:55:32 +0000 (11:55 +0000)]
(syms_of_frame): Fix the example in the doc string.

19 years ago(insert-kbd-macro): Do completions based on macros,
Eli Zaretskii [Sat, 6 Nov 2004 11:49:55 +0000 (11:49 +0000)]
(insert-kbd-macro): Do completions based on macros,
rather than all commands.

19 years ago(tempo-match-finder): Use [:word:] instead of "^\\b",
Eli Zaretskii [Sat, 6 Nov 2004 11:28:42 +0000 (11:28 +0000)]
(tempo-match-finder): Use [:word:] instead of "^\\b",
to solve a bug whereby tags with 'b' don't match.

19 years ago(easy-menu-get-map-look-for-name): Remove.
Stefan Monnier [Sat, 6 Nov 2004 10:01:56 +0000 (10:01 +0000)]
(easy-menu-get-map-look-for-name): Remove.
(easy-menu-lookup-name): New fun to replace it.
(easy-menu-get-map): Use it to obey menu item names (rather than just
keys) when looking up `path'.
(easy-menu-always-true-p): Rename from easy-menu-always-true.
(easy-menu-convert-item-1): Adjust to new name.

19 years ago* eval.c (Feval): Remove check for INPUT_BLOCKED_P.
Jan Djärv [Sat, 6 Nov 2004 07:47:27 +0000 (07:47 +0000)]
* eval.c (Feval): Remove check for INPUT_BLOCKED_P.

* xmenu.c (popup_get_selection, create_and_show_popup_menu)
(create_and_show_dialog): Revert change from 2004-10-31.

19 years ago*** empty log message ***
Luc Teirlinck [Fri, 5 Nov 2004 23:41:56 +0000 (23:41 +0000)]
*** empty log message ***

19 years ago(Keyboard Macros): Document `append' return value of `defining-kbd-macro'.
Luc Teirlinck [Fri, 5 Nov 2004 23:37:44 +0000 (23:37 +0000)]
(Keyboard Macros): Document `append' return value of `defining-kbd-macro'.

19 years ago(syms_of_macros) <defining-kbd-macro>: Doc fix.
Luc Teirlinck [Fri, 5 Nov 2004 22:46:28 +0000 (22:46 +0000)]
(syms_of_macros) <defining-kbd-macro>: Doc fix.

19 years ago(print_object): Print Lisp_Misc_Save_Value objects.
Kim F. Storm [Fri, 5 Nov 2004 22:46:17 +0000 (22:46 +0000)]
(print_object): Print Lisp_Misc_Save_Value objects.

19 years ago*** empty log message ***
Kim F. Storm [Fri, 5 Nov 2004 22:45:54 +0000 (22:45 +0000)]
*** empty log message ***

19 years ago(edebug-next-token-class): Allow all symbol-constituent characters
Juri Linkov [Fri, 5 Nov 2004 19:07:07 +0000 (19:07 +0000)]
(edebug-next-token-class): Allow all symbol-constituent characters
after dot, not only digits.

19 years ago(Info-search): Don't search in node header lines and file headers.
Juri Linkov [Fri, 5 Nov 2004 19:06:24 +0000 (19:06 +0000)]
(Info-search): Don't search in node header lines and file headers.