summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* ChangeLogEli Zaretskii2004-11-121-0/+2
|
* Add a test for DECL_ALIGN support, and add a trivial definition toEli Zaretskii2004-11-121-0/+16
| | | | src/config.h if 8-byte alignment is not supported.
* (rmail-get-new-mail): Use the renamed variables `rsf-beep' andEli Zaretskii2004-11-122-2/+5
| | | | `rsf-sleep-after-message'.
* (rmail-spam-filter): Only check white list if `message-sender' is non-nil.Eli Zaretskii2004-11-122-7/+13
|
* (desktop-create-buffer, desktop-save): Avoid some consing by using mapcEli Zaretskii2004-11-122-13/+18
| | | | instead of mapcar.
* ChangeLogEli Zaretskii2004-11-121-0/+4
|
* Don't require djecho.exe for the v1.x build.Eli Zaretskii2004-11-121-1/+3
|
* Fixed this bug:Kim F. Storm2004-11-121-20/+0
| | | | | | | | | | | | | | | | | | | | | ** 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.
* (init_iterator): Clear it.max_extra_line_spacing.Kim F. Storm2004-11-121-14/+37
| | | | | | | | | | | | | (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.
* (window_scroll_pixel_based, Frecenter): UseKim F. Storm2004-11-121-11/+44
| | | | | | | | | 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.
* (struct glyph_row): New member extra_line_spacing.Kim F. Storm2004-11-121-9/+33
| | | | | | | | | | | | (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.
* *** empty log message ***Kim F. Storm2004-11-121-0/+31
|
* (pop_down_menu): Return nil.Kim F. Storm2004-11-122-4/+10
|
* (pop_down_menu): New function.Jan Djärv2004-11-122-5/+45
| | | | | | | | (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.
* (popup_widget_loop): Add argument do_timers.Jan Djärv2004-11-122-2/+7
| | | | | | | (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.
* * xmenu.c (x_menu_wait_for_event): New function.Jan Djärv2004-11-122-10/+76
| | | | | | | (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.
* * XMenu.h (XMenuActivateSetWaitFunction): New function.Jan Djärv2004-11-123-0/+25
| | | | | * Activate.c (XMenuActivateSetWaitFunction): New function. (XMenuActivate): Call wait_func if set, before XNextEvent.
* *** empty log message ***Stefan Monnier2004-11-121-0/+15
|
* (byte-compile-inline-expand): Understand theStefan Monnier2004-11-121-3/+4
| | | | new byte-compile-function-environment binding to t.
* fix to use new easymenuVinicius Jose Latorre2004-11-122-12/+21
|
* (require): Explain why CL is needed.Nick Roberts2004-11-121-1/+1
|
* *** empty log message ***Nick Roberts2004-11-121-0/+4
|
* (font-lock-fontify-syntactically-region):Stefan Monnier2004-11-121-6/+6
| | | | Don't forget to highlight the last char when we hit `end'.
* (mouse-wheel-progressive-speed): Fix typo in name.Stefan Monnier2004-11-111-4/+4
| | | | (mwheel-scroll): Adjust accordingly.
* Reduce spurious warnings.Stefan Monnier2004-11-111-25/+7
| | | | | (cvs-status-checkout): Remove. (cvs-status-mode-map): Use cvs-mode-checkout instead.
* (cvs-mode-checkout): New command.Stefan Monnier2004-11-111-3/+18
|
* *** empty log message ***Stefan Monnier2004-11-112-26/+29
|
* (iso-cvt-define-menu): Fix typo.Stefan Monnier2004-11-111-1/+1
|
* Require CL.Stefan Monnier2004-11-111-2/+4
|
* Use push.Stefan Monnier2004-11-112-16/+21
| | | | | (byte-compile-file-form-defalias): Rename from byte-compile-defalias. (defalias): Remove the `byte-compile' property and add a `byte-hunk-handler'.
* (Info-search): Save match data for isearch. Skip Tag Table node.Juri Linkov2004-11-112-14/+38
|
* (magic-mode-alist): Use optimization for SGML mode too.Juri Linkov2004-11-111-11/+10
| | | | (set-auto-mode): Doc fix. Remove unused variable `xml'.
* (describe-char): Replace syntax-after with codeJuri Linkov2004-11-111-1/+4
| | | | from its previous version.
* (sgml-html-meta-auto-coding-function):Juri Linkov2004-11-111-1/+1
| | | | Remove > after <html to allow HTML attributes.
* Restore iso-2022-7bit coding in commented out code.Juri Linkov2004-11-111-2/+2
|
* Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-689Miles Bader2004-11-112-19/+87
| | | | | | | | | | | | | | | | | 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.
* *** empty log message ***Jay Belanger2004-11-111-0/+21
|
* (math-prime-factors-finished): Declared it as a variable.Jay Belanger2004-11-111-23/+45
| | | | | | | | | | | | | | | | | | | | | | | | | (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.
* (math-defcache): Use defvar for the new variables it creates.Jay Belanger2004-11-112-4/+9
|
* Update entry 2003-04-06 Lars Hansen <larsh@math.ku.dk>Lars Hansen2004-11-111-0/+1
|
* (desktop-buffer-mode-handlers, desktop-after-read-hook,Lars Hansen2004-11-112-8/+23
| | | | | | desktop-clear-preserve-buffers-regexp, desktop-file-name-format, desktop-globals-to-clear, desktop-no-desktop-file-hook, desktop-path, desktop-save): Add :version.
* url-mailto.el (url-mailto): Fix a typo in the comment.Masatake YAMATO2004-11-112-1/+6
|
* (pr-get-symbol): Don't downcase.Stefan Monnier2004-11-112-14/+16
|
* Comment change.Richard M. Stallman2004-11-111-5/+5
|
* *** empty log message ***Jay Belanger2004-11-111-0/+44
|
* (math-read-brackets, math-check-for-commas): Use declared variableJay Belanger2004-11-111-30/+30
| | | | | | | | | | | | 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.
* (math-parse-tex-sum): Use declared variable math-exp-old-pos.Jay Belanger2004-11-111-7/+7
| | | | | (math-parse-fortran-vector, math-parse-fortran-vector-end) (math-parse-eqn-prime): Use declared variable math-exp-token.
* (math-read-angle-bracket): Use declared variables math-exp-pos,Jay Belanger2004-11-111-3/+3
| | | | math-exp-str.
* (math-read-expr): Use declared variables math-exp-pos,Jay Belanger2004-11-111-11/+11
| | | | | math-exp-old-pos, math-exp-str, math-exp-token, math-exp-keep-spaces.
* (calc-do-quick-calc): Use kill-new to append string to kill-ring.Jay Belanger2004-11-111-158/+177
| | | | | | | | | | | | | | | | | | | | | | | | | | | (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.