]> git.eshelyaron.com Git - emacs.git/log
emacs.git
19 years ago(make_cursor_line_fully_visible_p): New variable.
Kim F. Storm [Sat, 13 Nov 2004 01:05:47 +0000 (01:05 +0000)]
(make_cursor_line_fully_visible_p): New variable.
(syms_of_xdisp): DEFVAR_BOOL it.
(make_cursor_line_fully_visible, try_cursor_movement)
(try_window_id): Use it.

19 years ago*** empty log message ***
Kim F. Storm [Sat, 13 Nov 2004 00:57:27 +0000 (00:57 +0000)]
*** empty log message ***

19 years agorun-mode-hooks instead of run-hooks
Daniel Pfeiffer [Fri, 12 Nov 2004 23:47:30 +0000 (23:47 +0000)]
run-mode-hooks instead of run-hooks

19 years ago(calc-dumb-map): Declared it.
Jay Belanger [Fri, 12 Nov 2004 22:35:21 +0000 (22:35 +0000)]
(calc-dumb-map):  Declared it.
(calc-graph-show-dumb):  Check if calc-dumb-map is non-nil rather than
unbound.

(calc-graph-name):  Made `end' a local variable.

(calc-graph-lookup):  Made `varname' a local variable.

(var-DUMMY, var-DUMMY2, var-PlotRejects, calc-gnuplot-trail-mark):
Declared them.
(calc-graph-format-data):  Don't check if var-PlotRejects is bound.

(calc-graph-plot, calc-graph-compute-3d):  Removed references to the
unused variable y3vec.

(calc-graph-show-dumb):  Removed reference to unused variable found-pt.

(calc-graph-kill-hook, calc-graph-plot):  Removed reference to
calc-graph-prev-kill-hook.

(calc-graph-yvalue, calc-graph-yvec, calc-graph-numsteps,
calc-graph-numsteps3, calc-graph-xvalue, calc-graph-xvec,
calc-graph-xname, calc-graph-yname, calc-graph-xstep,
calc-graph-ycache, calc-graph-ycacheptr, calc-graph-refine,
calc-graph-keep-file, calc-graph-xval, calc-graph-xlow,
calc-graph-xhigh, calc-graph-yval, calc-graph-yp, calc-graph-xp,
calc-graph-zp, calc-graph-yvector, calc-graph-resolution,
calc-graph-y3value, calc-graph-y3name,
calc-graph-y3step, calc-graph-y3step, calc-graph-zval,
calc-graph-stepcount, calc-graph-is-splot, calc-graph-surprise-splot,
calc-graph-blank, calc-graph-non-blank, calc-graph-curve-num):  New
variables.
(calc-graph-plot, calc-graph-compute-2d, calc-graph-refine-2d)
(calc-graph-recompute-2d, calc-graph-compute-3d, calc-graph-format-data):
Replaced undeclared variables with the above declared variables.

19 years agoChangeLog
Eli Zaretskii [Fri, 12 Nov 2004 18:19:08 +0000 (18:19 +0000)]
ChangeLog

19 years agoAdd a test for DECL_ALIGN support, and add a trivial definition to
Eli Zaretskii [Fri, 12 Nov 2004 18:18:43 +0000 (18:18 +0000)]
Add a test for DECL_ALIGN support, and add a trivial definition to
src/config.h if 8-byte alignment is not supported.

19 years ago(rmail-get-new-mail): Use the renamed variables `rsf-beep' and
Eli Zaretskii [Fri, 12 Nov 2004 17:10:38 +0000 (17:10 +0000)]
(rmail-get-new-mail): Use the renamed variables `rsf-beep' and
`rsf-sleep-after-message'.

19 years ago(rmail-spam-filter): Only check white list if `message-sender' is non-nil.
Eli Zaretskii [Fri, 12 Nov 2004 17:03:56 +0000 (17:03 +0000)]
(rmail-spam-filter): Only check white list if `message-sender' is non-nil.

19 years ago(desktop-create-buffer, desktop-save): Avoid some consing by using mapc
Eli Zaretskii [Fri, 12 Nov 2004 16:56:09 +0000 (16:56 +0000)]
(desktop-create-buffer, desktop-save): Avoid some consing by using mapc
instead of mapcar.

19 years agoChangeLog
Eli Zaretskii [Fri, 12 Nov 2004 16:11:11 +0000 (16:11 +0000)]
ChangeLog

19 years agoDon't require djecho.exe for the v1.x build.
Eli Zaretskii [Fri, 12 Nov 2004 16:10:03 +0000 (16:10 +0000)]
Don't require djecho.exe for the v1.x build.

19 years agoFixed this bug:
Kim F. Storm [Fri, 12 Nov 2004 14:29:24 +0000 (14:29 +0000)]
Fixed this bug:

** line-spacing and (recenter -1)

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

(recenter -1) does not show point at the bottom of the window
if line-spacing is set to positive integer.

Start emacs -Q, and evaluate below:

(progn
  (setq line-spacing 1)
  (dotimes (i (window-height))
    (insert "\n" (int-to-string i)))
  (recenter -1))

Then, point is displayed at the center of the window.
But point should be displayed at the bottom of the window like Emacs-21.3.

19 years ago(init_iterator): Clear it.max_extra_line_spacing.
Kim F. Storm [Fri, 12 Nov 2004 14:27:07 +0000 (14:27 +0000)]
(init_iterator): Clear it.max_extra_line_spacing.
(move_it_vertically_backward): Don't recure to move further back.
(move_it_vertically): Remove superfluous condition.
(move_it_by_lines): Clear last_height when moved 0 lines.
(resize_mini_window): use it.max_extra_line_spacing.
(display_tool_bar_line): Clear row->extra_line_spacing.
(try_scrolling): Use move_it_vertically_backward directly.
(redisplay_window): Likewise.
(compute_line_metrics): Set row->extra_line_spacing.
(display_line, display_string): Likewise.
(x_produce_glyphs): Update it->max_extra_line_spacing.

19 years ago(window_scroll_pixel_based, Frecenter): Use
Kim F. Storm [Fri, 12 Nov 2004 14:26:53 +0000 (14:26 +0000)]
(window_scroll_pixel_based, Frecenter): Use
move_it_vertically_backward directly.
(Frecenter): Fix calculation of new start pos for negative arg.
Before, the new start pos was sometimes chosen too far back, so
the last line became only partially visible, and thus would be
either only semi-visible or automatically scrolled to the middle
of the window by redisplay.

19 years ago(struct glyph_row): New member extra_line_spacing.
Kim F. Storm [Fri, 12 Nov 2004 14:26:34 +0000 (14:26 +0000)]
(struct glyph_row): New member extra_line_spacing.
(struct it): New member max_extra_line_spacing.
(MR_PARTIALLY_VISIBLE, MR_PARTIALLY_VISIBLE_AT_TOP)
(MR_PARTIALLY_VISIBLE_AT_BOTTOM): New helper macros.
(MATRIX_ROW_PARTIALLY_VISIBLE_P): Fix to return false if invisible
part of last line is only extra line spacing (so the text on the
line is fully visible). Use helper macros.
Add W arg (to use them).  All callers changed.
(MATRIX_ROW_PARTIALLY_VISIBLE_AT_TOP_P)
(MATRIX_ROW_PARTIALLY_VISIBLE_AT_BOTTOM_P): Use helper macros.

19 years ago*** empty log message ***
Kim F. Storm [Fri, 12 Nov 2004 14:21:27 +0000 (14:21 +0000)]
*** empty log message ***

19 years ago(pop_down_menu): Return nil.
Kim F. Storm [Fri, 12 Nov 2004 13:47:13 +0000 (13:47 +0000)]
(pop_down_menu): Return nil.

19 years ago(pop_down_menu): New function.
Jan Djärv [Fri, 12 Nov 2004 10:34:36 +0000 (10:34 +0000)]
(pop_down_menu): New function.
(popup_get_selection, popup_widget_loop): Unwind protect to
pop_down_menu.
(popup_widget_loop): Add argument widget.
(create_and_show_popup_menu, create_and_show_dialog): Pass new
argument widget to popup_widget_loop.

19 years ago(popup_widget_loop): Add argument do_timers.
Jan Djärv [Fri, 12 Nov 2004 09:36:55 +0000 (09:36 +0000)]
(popup_widget_loop): Add argument do_timers.
(create_and_show_popup_menu, create_and_show_dialog): Pass 1 for
do_timers to popup_widget_loop.
(create_and_show_popup_menu): Pass 1 for do_timers to
popup_get_selection.

19 years ago* xmenu.c (x_menu_wait_for_event): New function.
Jan Djärv [Fri, 12 Nov 2004 08:33:51 +0000 (08:33 +0000)]
* xmenu.c (x_menu_wait_for_event): New function.
(popup_get_selection, popup_widget_loop):  Call x_menu_wait_for_event
to handle timers.
(xmenu_show): Call XMenuActivateSetWaitFunction so that
x_menu_wait_for_event is called by XMenuActivate.

19 years ago* XMenu.h (XMenuActivateSetWaitFunction): New function.
Jan Djärv [Fri, 12 Nov 2004 08:28:57 +0000 (08:28 +0000)]
* XMenu.h (XMenuActivateSetWaitFunction): New function.

* Activate.c (XMenuActivateSetWaitFunction): New function.
(XMenuActivate): Call wait_func if set, before XNextEvent.

19 years ago*** empty log message ***
Stefan Monnier [Fri, 12 Nov 2004 04:06:13 +0000 (04:06 +0000)]
*** empty log message ***

19 years ago(byte-compile-inline-expand): Understand the
Stefan Monnier [Fri, 12 Nov 2004 03:59:26 +0000 (03:59 +0000)]
(byte-compile-inline-expand): Understand the
new byte-compile-function-environment binding to t.

19 years agofix to use new easymenu
Vinicius Jose Latorre [Fri, 12 Nov 2004 02:14:03 +0000 (02:14 +0000)]
fix to use new easymenu

19 years ago(require): Explain why CL is needed.
Nick Roberts [Fri, 12 Nov 2004 00:14:24 +0000 (00:14 +0000)]
(require): Explain why CL is needed.

19 years ago*** empty log message ***
Nick Roberts [Fri, 12 Nov 2004 00:13:36 +0000 (00:13 +0000)]
*** empty log message ***

19 years ago(font-lock-fontify-syntactically-region):
Stefan Monnier [Fri, 12 Nov 2004 00:00:59 +0000 (00:00 +0000)]
(font-lock-fontify-syntactically-region):
Don't forget to highlight the last char when we hit `end'.

19 years ago(mouse-wheel-progressive-speed): Fix typo in name.
Stefan Monnier [Thu, 11 Nov 2004 23:51:40 +0000 (23:51 +0000)]
(mouse-wheel-progressive-speed): Fix typo in name.
(mwheel-scroll): Adjust accordingly.

19 years agoReduce spurious warnings.
Stefan Monnier [Thu, 11 Nov 2004 23:47:15 +0000 (23:47 +0000)]
Reduce spurious warnings.
(cvs-status-checkout): Remove.
(cvs-status-mode-map): Use cvs-mode-checkout instead.

19 years ago(cvs-mode-checkout): New command.
Stefan Monnier [Thu, 11 Nov 2004 23:45:52 +0000 (23:45 +0000)]
(cvs-mode-checkout): New command.

19 years ago*** empty log message ***
Stefan Monnier [Thu, 11 Nov 2004 23:04:45 +0000 (23:04 +0000)]
*** empty log message ***

19 years ago(iso-cvt-define-menu): Fix typo.
Stefan Monnier [Thu, 11 Nov 2004 22:59:58 +0000 (22:59 +0000)]
(iso-cvt-define-menu): Fix typo.

19 years agoRequire CL.
Stefan Monnier [Thu, 11 Nov 2004 22:58:14 +0000 (22:58 +0000)]
Require CL.

19 years agoUse push.
Stefan Monnier [Thu, 11 Nov 2004 22:44:46 +0000 (22:44 +0000)]
Use push.
(byte-compile-file-form-defalias): Rename from byte-compile-defalias.
(defalias): Remove the `byte-compile' property and add a `byte-hunk-handler'.

19 years ago(Info-search): Save match data for isearch. Skip Tag Table node.
Juri Linkov [Thu, 11 Nov 2004 21:45:57 +0000 (21:45 +0000)]
(Info-search): Save match data for isearch.  Skip Tag Table node.

19 years ago(magic-mode-alist): Use optimization for SGML mode too.
Juri Linkov [Thu, 11 Nov 2004 21:42:32 +0000 (21:42 +0000)]
(magic-mode-alist): Use optimization for SGML mode too.
(set-auto-mode): Doc fix.  Remove unused variable `xml'.

19 years ago(describe-char): Replace syntax-after with code
Juri Linkov [Thu, 11 Nov 2004 21:40:43 +0000 (21:40 +0000)]
(describe-char): Replace syntax-after with code
from its previous version.

19 years ago(sgml-html-meta-auto-coding-function):
Juri Linkov [Thu, 11 Nov 2004 21:39:41 +0000 (21:39 +0000)]
(sgml-html-meta-auto-coding-function):
Remove > after <html to allow HTML attributes.

19 years agoRestore iso-2022-7bit coding in commented out code.
Juri Linkov [Thu, 11 Nov 2004 21:38:47 +0000 (21:38 +0000)]
Restore iso-2022-7bit coding in commented out code.

19 years agoRevision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-689
Miles Bader [Thu, 11 Nov 2004 21:19:49 +0000 (21:19 +0000)]
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-689

Merge from gnus--rel--5.10

Patches applied:

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

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

   * lisp/gnus/gnus-art.el (gnus-emphasis-alist): Don't hide asterisks by
   default; improve customization type.
   (gnus-emphasis-custom-with-format): New macro.
   (gnus-emphasis-custom-value-to-external): New function.
   (gnus-emphasis-custom-value-to-internal): New function.

19 years ago*** empty log message ***
Jay Belanger [Thu, 11 Nov 2004 21:05:47 +0000 (21:05 +0000)]
*** empty log message ***

19 years ago(math-prime-factors-finished): Declared it as a variable.
Jay Belanger [Thu, 11 Nov 2004 20:59:02 +0000 (20:59 +0000)]
(math-prime-factors-finished):  Declared it as a variable.

(calcFunc-dfac):  Replaced max by n.

(math-stirling-local-cache):  New variable.
(math-stirling-number, math-stirling-1, math-stirling-2):  Replaced
the variable `cache' by the declared variable math-stirling-local-cache.

(var-RandSeed):  Declared it.
(math-init-random-base, math-random-digit):  Don't check to see if
var-RandSeed is bound.

(math-random-cache, math-gaussian-cache, calc-verbose-nextprime):
Declared them instead of just setting them.

(math-init-random-base):  Made i a local variable.

(math-random-digit):  Made math-random-last a local variable.

(math-prime-test-cache):  Moved declaration to before it is used.

(math-prime-test-cache-k, math-prime-test-cache-q,
math-prime-test-cache-nm1, math-prime-factors-finished):  Declared
them as variables.

19 years ago(math-defcache): Use defvar for the new variables it creates.
Jay Belanger [Thu, 11 Nov 2004 20:16:15 +0000 (20:16 +0000)]
(math-defcache):  Use defvar for the new variables it creates.

19 years agoUpdate entry 2003-04-06 Lars Hansen <larsh@math.ku.dk>
Lars Hansen [Thu, 11 Nov 2004 19:04:18 +0000 (19:04 +0000)]
Update entry 2003-04-06  Lars Hansen  <larsh@math.ku.dk>

19 years ago(desktop-buffer-mode-handlers, desktop-after-read-hook,
Lars Hansen [Thu, 11 Nov 2004 19:02:56 +0000 (19:02 +0000)]
(desktop-buffer-mode-handlers, desktop-after-read-hook,
desktop-clear-preserve-buffers-regexp, desktop-file-name-format,
desktop-globals-to-clear, desktop-no-desktop-file-hook, desktop-path,
desktop-save): Add :version.

19 years agourl-mailto.el (url-mailto): Fix a typo in the comment.
Masatake YAMATO [Thu, 11 Nov 2004 18:03:41 +0000 (18:03 +0000)]
url-mailto.el (url-mailto): Fix a typo in the comment.

19 years ago(pr-get-symbol): Don't downcase.
Stefan Monnier [Thu, 11 Nov 2004 15:01:34 +0000 (15:01 +0000)]
(pr-get-symbol): Don't downcase.

19 years agoComment change.
Richard M. Stallman [Thu, 11 Nov 2004 14:54:26 +0000 (14:54 +0000)]
Comment change.

19 years ago*** empty log message ***
Jay Belanger [Thu, 11 Nov 2004 06:14:18 +0000 (06:14 +0000)]
*** empty log message ***

19 years ago(math-read-brackets, math-check-for-commas): Use declared variable
Jay Belanger [Thu, 11 Nov 2004 05:53:19 +0000 (05:53 +0000)]
(math-read-brackets, math-check-for-commas):  Use declared variable
math-exp-pos.

(math-check-for-commas):  Use declared variable math-exp-str.

(math-read-brackets):  Use declared variables math-exp-old-pos,
math-exp-keep-spaces.

(math-read-brackets, math-read-vector, math-read-matrix):  Use
declared variable math-exp-token.

19 years ago(math-parse-tex-sum): Use declared variable math-exp-old-pos.
Jay Belanger [Thu, 11 Nov 2004 05:52:17 +0000 (05:52 +0000)]
(math-parse-tex-sum):  Use declared variable math-exp-old-pos.

(math-parse-fortran-vector, math-parse-fortran-vector-end)
(math-parse-eqn-prime):  Use declared variable math-exp-token.

19 years ago(math-read-angle-bracket): Use declared variables math-exp-pos,
Jay Belanger [Thu, 11 Nov 2004 05:51:24 +0000 (05:51 +0000)]
(math-read-angle-bracket):  Use declared variables math-exp-pos,
math-exp-str.

19 years ago(math-read-expr): Use declared variables math-exp-pos,
Jay Belanger [Thu, 11 Nov 2004 05:50:09 +0000 (05:50 +0000)]
(math-read-expr):  Use declared variables math-exp-pos,
math-exp-old-pos, math-exp-str, math-exp-token,
math-exp-keep-spaces.

19 years ago(calc-do-quick-calc): Use kill-new to append string to kill-ring.
Jay Belanger [Thu, 11 Nov 2004 05:48:50 +0000 (05:48 +0000)]
(calc-do-quick-calc):  Use kill-new to append string to kill-ring.

(calc-alg-exp, math-toks, math-exp-pos,math-exp-old-pos)
(math-exp-token, math-exp-keep-spaces, math-exp-str):  New variables.

(calc-do-alg-entry, calcAlg-equals, calcAlg-edit, calcAlg-enter):  Use
declared variable calc-alg-exp.

(math-build-parse-table, math-find-user-token):  Use declared variable
math-toks.

(math-read-exprs, math-read-token, calc-check-user-syntax,
calc-match-user-syntax, match-factor-after, math-read-factor):  Use
declared variables math-exp-pos math-exp-old-pos.

(math-read-exprs, math-read-token, math-read-expr-level)
(calc-check-user-syntax, calc-match-user-syntax, match-factor-after)
(math-read-factor):  Use declared variable math-exp-token.

(math-read-exprs, math-read-expr-list, math-read-token,
math-read-factor):  Use declared variable math-exp-keep-spaces.

(math-read-exprs, math-read-token):  Use declared variable
math-exp-str.

(calc-match-user-syntax):  Made m a local variable.

19 years ago(magic-mode-alist): Reduce backtracking in the HTML regexp.
Stefan Monnier [Thu, 11 Nov 2004 04:52:27 +0000 (04:52 +0000)]
(magic-mode-alist): Reduce backtracking in the HTML regexp.

19 years ago(Fkeymap_prompt): Accept symbol keymaps.
Stefan Monnier [Wed, 10 Nov 2004 22:35:21 +0000 (22:35 +0000)]
(Fkeymap_prompt): Accept symbol keymaps.

19 years agoEmacs 21.4, not 20.4
Daniel Pfeiffer [Wed, 10 Nov 2004 20:17:34 +0000 (20:17 +0000)]
Emacs 21.4, not 20.4

19 years agomagic-mode-alist & conf-mode.el
Daniel Pfeiffer [Wed, 10 Nov 2004 20:15:00 +0000 (20:15 +0000)]
magic-mode-alist & conf-mode.el

19 years agoRevert last change.
Eli Zaretskii [Wed, 10 Nov 2004 20:12:29 +0000 (20:12 +0000)]
Revert last change.

19 years ago(easy-menu-add-item): Use keymap-prompt. Simplify.
Stefan Monnier [Wed, 10 Nov 2004 16:20:20 +0000 (16:20 +0000)]
(easy-menu-add-item): Use keymap-prompt.  Simplify.

19 years ago(easy-menu-define-key): Understand the case where the keymap is a symbol.
Stefan Monnier [Wed, 10 Nov 2004 15:15:43 +0000 (15:15 +0000)]
(easy-menu-define-key): Understand the case where the keymap is a symbol.

19 years ago(sgml-tag-text-p): New fun.
Stefan Monnier [Wed, 10 Nov 2004 14:39:40 +0000 (14:39 +0000)]
(sgml-tag-text-p): New fun.
(sgml-parse-tag-backward): Use it to skip spurious < or >.

19 years ago*** empty log message ***
Thien-Thi Nguyen [Wed, 10 Nov 2004 10:51:01 +0000 (10:51 +0000)]
*** empty log message ***

19 years agoDoc fixes throughout.
Thien-Thi Nguyen [Wed, 10 Nov 2004 10:45:59 +0000 (10:45 +0000)]
Doc fixes throughout.
(electric-buffer-menu-mode-hook): New defvar.

19 years agoAlso do /etc/magic, hosts.allow, hosts.deny etc.
Daniel Pfeiffer [Wed, 10 Nov 2004 09:53:24 +0000 (09:53 +0000)]
Also do /etc/magic, hosts.allow, hosts.deny etc.

19 years agoDon't require cl, comint, gud, gdb-ui for
Nick Roberts [Wed, 10 Nov 2004 06:47:35 +0000 (06:47 +0000)]
Don't require cl, comint, gud, gdb-ui for
compilation. The resulting compiler warnings appear to be
harmless.

19 years ago*** empty log message ***
Nick Roberts [Wed, 10 Nov 2004 06:46:50 +0000 (06:46 +0000)]
*** empty log message ***

19 years agoChanges from arch/CVS synchronization
Miles Bader [Wed, 10 Nov 2004 05:20:51 +0000 (05:20 +0000)]
Changes from arch/CVS synchronization

19 years ago*** empty log message ***
Daniel Pfeiffer [Wed, 10 Nov 2004 00:43:48 +0000 (00:43 +0000)]
*** empty log message ***

19 years ago(auto-mode-alist, magic-mode-alist): Use conf-mode
Daniel Pfeiffer [Wed, 10 Nov 2004 00:39:54 +0000 (00:39 +0000)]
(auto-mode-alist, magic-mode-alist): Use conf-mode

19 years ago*** empty log message ***
André Spiegel [Tue, 9 Nov 2004 23:41:50 +0000 (23:41 +0000)]
*** empty log message ***

19 years agoRewrite the introduction about version systems, mentioning the new
André Spiegel [Tue, 9 Nov 2004 23:36:29 +0000 (23:36 +0000)]
Rewrite the introduction about version systems, mentioning the new
ones that we support.  Thanks to Alex Ott, Karl Fogel, Stefan
Monnier, and David Kastrup for suggestions.

19 years ago(iso-cvt-define-menu): Clean up namespace.
Stefan Monnier [Tue, 9 Nov 2004 22:10:42 +0000 (22:10 +0000)]
(iso-cvt-define-menu): Clean up namespace.

19 years agoAdd a note about VC-over-Tramp.
André Spiegel [Tue, 9 Nov 2004 22:06:05 +0000 (22:06 +0000)]
Add a note about VC-over-Tramp.

19 years ago*** empty log message ***
Jay Belanger [Tue, 9 Nov 2004 20:38:27 +0000 (20:38 +0000)]
*** empty log message ***

19 years ago(math-read-exprs, math-read-expr-list, math-read-expr-level,
Jay Belanger [Tue, 9 Nov 2004 20:32:37 +0000 (20:32 +0000)]
(math-read-exprs, math-read-expr-list, math-read-expr-level,
math-read-token, calc-check-user-syntax, calc-match-user-syntax,
math-read-if, math-factor-after, math-read-factor):  Use
declared variable math-expr-data.

19 years ago(math-parse-fortran-vector, math-parse-fortran-vector-end,
Jay Belanger [Tue, 9 Nov 2004 20:32:13 +0000 (20:32 +0000)]
(math-parse-fortran-vector, math-parse-fortran-vector-end,
math-parse-tex-sum, math-parse-eqn-matrix, math-parse-eqn-prime,
math-read-math-subscr):  Use declared variable math-expr-data.

19 years ago(math-read-brackets, math-read-vector, math-read-matrix): Use
Jay Belanger [Tue, 9 Nov 2004 20:31:40 +0000 (20:31 +0000)]
(math-read-brackets, math-read-vector, math-read-matrix):  Use
declared variable math-expr-data.

19 years ago(math-rewrite, math-rewrite-phase): Use declared variable math-mt-many.
Jay Belanger [Tue, 9 Nov 2004 20:31:12 +0000 (20:31 +0000)]
(math-rewrite, math-rewrite-phase):  Use declared variable math-mt-many.

(math-rewrite):  Use declared variable math-mt-func.

19 years ago(math-expand-form): Use declared variable math-mt-many.
Jay Belanger [Tue, 9 Nov 2004 20:30:40 +0000 (20:30 +0000)]
(math-expand-form):  Use declared variable math-mt-many.

19 years ago(math-normalize-a): New variable.
Jay Belanger [Tue, 9 Nov 2004 20:30:10 +0000 (20:30 +0000)]
(math-normalize-a):  New variable.

(math-normalize):  Use declared variable math-normalize-a.

19 years ago(calc-init-extensions): Remove old code.
Jay Belanger [Tue, 9 Nov 2004 20:29:34 +0000 (20:29 +0000)]
(calc-init-extensions):  Remove old code.

(math-expr-data, math-mt-many, math-mt-func, calc-z-prefix-buf)
(calc-z-prefix-msgs):  New variables.

(calc-z-prefix-help, calc-user-function-list):  Use declared variables
calc-z-prefix-buf, calc-z-prefix-msgs.

(math-normalize-nonstandard):  Use declared variable math-normalize-a.

(math-map-tree, math-map-tree-rec):  Use declared variables
math-mt-many, math-mt-func.

(math-read-expression, math-read-string):  Use declared variable math-expr-data.

19 years ago(diary-from-outlook, diary-from-outlook-gnus)
Glenn Morris [Tue, 9 Nov 2004 17:01:01 +0000 (17:01 +0000)]
(diary-from-outlook, diary-from-outlook-gnus)
(diary-from-outlook-rmail): Use NOCONFIRM rather than DONOTASK for
argument name.

19 years ago*** empty log message ***
Glenn Morris [Tue, 9 Nov 2004 16:59:44 +0000 (16:59 +0000)]
*** empty log message ***

19 years ago(diary-from-outlook, diary-from-outlook-gnus)
Glenn Morris [Tue, 9 Nov 2004 14:51:06 +0000 (14:51 +0000)]
(diary-from-outlook, diary-from-outlook-gnus)
(diary-from-outlook-rmail): Do not use interactive-p; but rather new
optional argument DONOTASK.

19 years ago*** empty log message ***
Glenn Morris [Tue, 9 Nov 2004 14:50:30 +0000 (14:50 +0000)]
*** empty log message ***

19 years ago(easy-menu-intern): Revert to no-downcasing.
Stefan Monnier [Tue, 9 Nov 2004 14:37:10 +0000 (14:37 +0000)]
(easy-menu-intern): Revert to no-downcasing.
(easy-menu-name-match): Revert correspondingly.

19 years agoInclude <sys/types.h> and <unistd.h> (for getpid).
Kim F. Storm [Tue, 9 Nov 2004 13:26:58 +0000 (13:26 +0000)]
Include <sys/types.h> and <unistd.h> (for getpid).
Fix various comments referring to XEvents instead of input events.
(x_queue_event): Fix format strings.
(x_stop_queuing_selection_requests): Likewise.

19 years ago(produce_image_glyph): Remove unused variable 'face_ascent'.
Kim F. Storm [Tue, 9 Nov 2004 13:26:01 +0000 (13:26 +0000)]
(produce_image_glyph): Remove unused variable 'face_ascent'.
(pint2hrstr): Add extra braces to silence compiler.

19 years ago(print_object): Fix format string.
Kim F. Storm [Tue, 9 Nov 2004 13:24:35 +0000 (13:24 +0000)]
(print_object): Fix format string.

19 years ago(read1): Fix next_char matching.
Kim F. Storm [Tue, 9 Nov 2004 13:24:19 +0000 (13:24 +0000)]
(read1): Fix next_char matching.

19 years ago(Fdelete): Add EXFUN.
Kim F. Storm [Tue, 9 Nov 2004 13:24:07 +0000 (13:24 +0000)]
(Fdelete): Add EXFUN.
(replace_range_2): Add prototype.

19 years ago(read_avail_input): Remove unused variable 'discard'.
Kim F. Storm [Tue, 9 Nov 2004 13:23:55 +0000 (13:23 +0000)]
(read_avail_input): Remove unused variable 'discard'.

19 years ago(NULL_INTERVAL_P): Add separate version when
Kim F. Storm [Tue, 9 Nov 2004 13:23:42 +0000 (13:23 +0000)]
(NULL_INTERVAL_P): Add separate version when
ENABLE_CHECKING is not defined to silence compiler.
(compare_string_intervals): Add prototype.

19 years ago(destroy_fringe_bitmap): Fix return type.
Kim F. Storm [Tue, 9 Nov 2004 13:23:32 +0000 (13:23 +0000)]
(destroy_fringe_bitmap): Fix return type.
(Ffringe_bitmaps_at_pos): Remove unused var 'old_buffer'.

19 years ago(Fdump_emacs): Fix format string.
Kim F. Storm [Tue, 9 Nov 2004 13:23:13 +0000 (13:23 +0000)]
(Fdump_emacs): Fix format string.

19 years agoInclude <ctype.h>.
Kim F. Storm [Tue, 9 Nov 2004 13:23:00 +0000 (13:23 +0000)]
Include <ctype.h>.
(Fsubstitute_command_keys): Remove unused variable 'firstkey'.

19 years ago(store_symval_forwarding): Remove unused variables.
Kim F. Storm [Tue, 9 Nov 2004 13:19:11 +0000 (13:19 +0000)]
(store_symval_forwarding): Remove unused variables.

19 years ago(Fcall_interactively): Remove unused variable 'funcar'.
Kim F. Storm [Tue, 9 Nov 2004 13:18:58 +0000 (13:18 +0000)]
(Fcall_interactively): Remove unused variable 'funcar'.

19 years ago*** empty log message ***
Kim F. Storm [Tue, 9 Nov 2004 13:18:39 +0000 (13:18 +0000)]
*** empty log message ***