aboutsummaryrefslogtreecommitdiffstats
path: root/admin
Commit message (Collapse)AuthorAgeFilesLines
* *** empty log message ***Kim F. Storm2004-12-161-1/+23
|
* *** empty log message ***Stefan Monnier2004-12-071-0/+26
|
* Fixed this redisplay bug:Kim F. Storm2004-11-211-20/+10
| | | | | | | | | | | | ** Problem with cursor border around images and window-margins: The border around the image when the cursor is on the image flows into the right fringe and margin. (progn (auto-image-file-mode 1) (find-file (concat data-directory "splash.xpm")) (set-window-margins (selected-window) 25 25))
* *** empty log message ***Richard M. Stallman2004-11-181-0/+2
|
* *** empty log message ***Richard M. Stallman2004-11-161-0/+6
|
* *** empty log message ***Richard M. Stallman2004-11-161-5/+40
|
* Add bug:Kim F. Storm2004-11-131-0/+26
| | | | ** Partial highlighting of wrapped overlay
* Fixed these problems:Kim F. Storm2004-11-131-33/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | ** Clicking on partially visible lines fails From: David Kastrup <[email protected]> Date: 27 Apr 2004 16:42:58 +0200 I had gnus display a mouse-highlighted line (a URL from browse-url) partially at the bottom of its window. If I click with middle mouse key on it, the window gets recentered while I hold the mouse key pressed. If I release it, the window returns into its old position (cursor in top row) and nothing happens, presumably because the click was not registered on the line itself, but on the magically recentered version. That is a nuisance. Recentering of even partially visible click targets should only happen if window-point moves there, but not at the time of the click. From the moment I hold down a key until it gets released, the displayed window portion should not change, with the sole exception of scrolling when dragging at the edge of the screen. (progn (setq line-spacing 4) (dotimes (i (window-height)) (insert "\n" (int-to-string i))) (forward-line -2) (recenter -1)) ** Can't drag modeline when mouse-autoselect-window is set From: Klaus Zeitler <[email protected]> Date: Mon, 11 Oct 2004 11:14:49 +0200 1. start emacs -q --no-site-file 2. set variable mouse-autoselect-window to t 3. split-window-vertically now I can drag the modeline only upwards but not downwards
* Fixed this bug:Kim F. Storm2004-11-121-20/+0
| | | | | | | | | | | | | | | | | | | | | ** line-spacing and (recenter -1) From: SAITO Takuya <[email protected]> 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.
* Add a note about VC-over-Tramp.André Spiegel2004-11-091-0/+4
|
* This bug was fixed by RMS on 2004-11-02:Kim F. Storm2004-11-081-21/+0
| | | | | | | | | | | | | | | | | | | | | | ** scroll-preserve-screen-position doesn't work with a header-line-format From: [email protected] 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.
* Fixed bug:Kim F. Storm2004-11-081-26/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | ** line-spacing and garbage in fringe From: SAITO Takuya <[email protected]> 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'.
* Fixed this bug:Kim F. Storm2004-11-081-23/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | ** Mouse-face overlay bleeds into header line From: Stephen Berman <[email protected]> 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.
* *** empty log message ***Richard M. Stallman2004-11-081-3/+6
|
* *** empty log message ***Kim F. Storm2004-11-021-10/+2
|
* * FOR-RELEASE (Indications): Remove two stage update for toolbar (Done).Jan Djärv2004-11-022-4/+4
|
* Add redisplay related errors.Kim F. Storm2004-11-011-0/+224
|
* *** empty log message ***Richard M. Stallman2004-11-011-0/+6
|
* New display properties added to manuals.Kim F. Storm2004-10-061-2/+0
|
* *** empty log message ***Luc Teirlinck2004-10-051-1/+1
|
* *** empty log message ***Luc Teirlinck2004-09-211-0/+5
|
* (Indications): Rearrange checklists for Emacs and Elisp manuals.Luc Teirlinck2004-09-211-102/+103
|
* *** empty log message ***Richard M. Stallman2004-09-201-1/+1
|
* Add DONE2 column for manual sections.Kim F. Storm2004-09-191-96/+98
|
* *** empty log message ***Luc Teirlinck2004-09-181-1/+1
|
* (Indications): Clean up and update checklists for Emacs and Elisp manual.Luc Teirlinck2004-09-182-106/+64
|
* (Documentation): Add NEWS entry.Kim F. Storm2004-09-111-19/+172
| | | | Add section lists for proof-reading Emacs and Lisp manuals.
* *** empty log message ***Kim F. Storm2004-09-111-0/+2
|
* (New features): Remove Gnus 5.10 entry (Done!).Kim F. Storm2004-09-112-2/+4
|
* *** empty log message ***Kim F. Storm2004-08-291-2/+6
|
* Add ack.texi and AUTHORS.Kim F. Storm2004-08-291-0/+4
|
* * FOR-RELEASE (Indications): Removed entry about GTK and geometry,Jan Djärv2004-08-282-2/+5
| | | | (now behaves as well as other ports).
* Add Gnus and face remapping entries.Kim F. Storm2004-06-281-0/+4
|
* * FOR-RELEASE: Removed entry about GTK and monochrome displays (done).Jan Djärv2004-06-282-2/+4
|
* Use outline-mode.Kim F. Storm2004-06-281-11/+24
|
* *** empty log message ***Kim F. Storm2004-06-281-0/+9
|
* Moved FOR-RELEASE from etc/ to admin/.Eli Zaretskii2004-06-262-0/+28
|
* New entry re clamping to EXIT_FAILURE.Thien-Thi Nguyen2004-05-121-0/+12
|
* Initial revisionThien-Thi Nguyen2004-05-091-0/+23
|
* Initial revisionThien-Thi Nguyen2004-05-082-0/+22
|
* Correct original attributionFrancesco Potortì2004-02-261-1/+2
|
* The upload procedure that was described is no more valid after theFrancesco Potortì2003-10-241-1/+7
| | | | | | break-ins. Need to describe how to upgrade AUTHORS using emacs-lisp/authors.el.
* Revision: [email protected]/emacs--cvs-trunk--0--patch-68Miles Bader2003-10-012-3/+11
| | | | | | | Portability fix for admin/quick-install-emacs * admin/quick-install-emacs: Don't use "function" keyword when defining shell functions.
* Mention regenerating Emacs' AUTHORS file.Lute Kamstra2003-09-291-13/+19
|
* Revision: [email protected]/emacs--cvs-trunk--0--patch-62Miles Bader2003-09-272-5/+8
| | | | | | | | | Tweaks to admin/quick-install-emacs * quick-install-emacs: Remove fns-* pruning, since that file no longer seems to be generated. (AVOID): Quote literal periods. Quote braces in a way acceptable to all parties (gawk gets bitchy about using `\').
* Revision: [email protected]/emacs--cvs-trunk--0--patch-45Miles Bader2003-09-151-1/+1
| | | | Quote braces in regexp passed to egrep/awk
* Add arch taglinesMiles Bader2003-09-0120-0/+41
|
* Revision: [email protected]/emacs--cvs-trunk--0--patch-19Miles Bader2003-08-192-1/+7
| | | | Use quoting in quick-install-emacs that works with recent gawks
* Revision: emacs--cvs-trunk--0--patch-13Miles Bader2003-08-141-1/+1
| | | | | | | | | | | | Archive: [email protected] Creator: Miles Bader <[email protected]> Date: Thu Aug 14 17:50:57 JST 2003 Standard-date: 2003-08-14 08:50:57 GMT Summary: Add arch-specific ignored files to quick-install-emacs Modified-files: ./admin/quick-install-emacs New-patches: [email protected]/emacs--cvs-trunk--0--patch-13 Add arch-specific ignored files to quick-install-emacs
* *** empty log message ***Markus Rost2003-08-111-0/+4
|