Your message dated Thu, 23 Jan 2014 04:17:43 +0000
with message-id <[email protected]>
and subject line Closing old emacs21 bugs
has caused the Debian Bug report #125960,
regarding emacs20: garbage with font -misc-fixed-17
to be marked as done.
This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.
(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact [email protected]
immediately.)
--
125960: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=125960
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Package: emacs20
Version: 20.7-10.1
Severity: normal
When I work in emacs using font
-misc-fixed-medium-r-normal-*-17-*-*-*-c-*-iso8859-2
I gradually get more and more garbage between the lines.
The easiest way to obtain a lot of garbage quickly is to write
a lot of letters "g" and them delete them. The bottom part of "g"
then always remains on the screen. C-l clears garbage.
If I remember correctly I had the same problems on my old 486 computer,
and with fonts of other encodings than iso8859-2, but always of size 17.
-- System Information
Debian Release: testing/unstable
Kernel Version: Linux bratek 2.4.9 #1 Sun Sep 23 14:35:30 CEST 2001 i686 unknown
Versions of the packages emacs20 depends on:
ii dpkg 1.9.17 Package maintenance system for Debian
ii emacsen-common 1.4.13 Common facilities for all emacsen.
ii libc6 2.2.4-1 GNU C Library: Shared libraries and Timezone
ii liblockfile1 1.03 NFS-safe locking library, includes dotlockfi
ii libncurses5 5.2.20010318-3 Shared libraries for terminal handling
ii libxaw7 4.1.0-5 X Athena widget set library
ii xlibs 4.1.0-5 X Window System client libraries
my .emacs:
(custom-set-variables
'(mail-yank-prefix "> ")
'(mail-self-blind t t)
'(ps-underlined-faces (quote (font-lock-keyword-face font-lock-type-face)))
'(ps-left-margin 20.0)
'(ps-italic-faces (quote (font-lock-variable-name-face font-lock-string-face
font-lock-comment-face)))
'(ps-print-color-p nil)
'(mail-signature t t)
'(ps-bold-faces (quote (font-lock-keyword-face font-lock-function-name-face)))
'(scroll-preserve-screen-position 2)
'(ps-font-size (quote (7 . 12)))
'(font-lock-support-mode (quote lazy-lock-mode))
'(user-mail-address "[email protected]")
'(ps-right-margin 0.0)
'(next-line-add-newlines nil)
'(global-font-lock-mode t nil (font-lock))
'(speedbar-supported-extension-expressions (quote
(".[ch]\\(\\+\\+\\|pp\\|c\\|h\\|xx\\)?" ".tex\\(i\\(nfo\\)?\\)?" ".el" ".emacs"
".l" ".lsp" ".p" ".java" ".f\\(90\\|77\\|or\\)?" ".ada" ".p[lm]" ".tcl" ".m"
".scm" ".pm" ".py" ".s?html" "[Mm]akefile\\(\\.in\\)?" ".mli?")))
'(scroll-bar-mode nil)
'(make-backup-files nil)
'(next-screen-context-lines 0)
'(speedbar-hide-button-brackets-flag t))
(custom-set-faces)
(setq timidity-default-options '("-A 100" "-B 4" "-C 1" "-s 44100"
"-EFchorus=2" "-EFreverb=1"))
;;; internationalization
(standard-display-european 1)
(let ((cim (current-input-mode)))
(set-input-mode (car cim) (car (cdr cim)) 0))
;;; sml-mode
(autoload 'sml-mode "sml-mode" "Major mode for editing Standard ML." t)
(autoload 'sml "sml-proc" "Run an inferior ML process." t)
(autoload 'sml-mosml "sml-mosml" "Set up and run Moscow ML." t)
(autoload 'sml-poly-ml "sml-poly-ml" "Set up and run Poly/ML." t)
(setq auto-mode-alist
(append '(("\\.eml$" . sml-mode)
("\\.sml$" . sml-mode)
("\\.sig$" . sml-mode)
("\\.ML$" . sml-mode)) auto-mode-alist))
(setq sml-mode-hook
'(lambda() "SML mode hacks" (setq sml-case-indent t)))
(setq sml-load-hook
'(lambda() "Fontify SML." (require 'sml-font)))
(setq sml-mode-info "/usr/local/share/emacs/site-lisp/sml-mode.info")
(if window-system
(progn
(global-set-key "\C-x\C-d" 'run-caml)
(setq caml-imenu-enable t)
(require 'caml-font)
(defconst caml-font-lock-keywords
(append
(list
;dule
'("\\<\\(dul\\)\\>" . font-lock-keyword-face))
caml-font-lock-keywords))
(defconst caml-font-lock-keywords
(append
(list
;dule
'("\\<\\(where\\|library\\|signatures\\|modules\\|copy\\|ind\\|coind\\|con\\|fold\\|de\\|unfold\\)\\>"
. font-lock-type-face))
caml-font-lock-keywords))
))
(setq compile-command "make ")
;;(setq caml-mode-hook
;; '(lambda() "Fontify Caml." (require 'caml-font)))
(setq inferior-caml-program "~/Dule/code/cule/dule.top")
;;; auctex
(require 'tex-site)
;; (setq TeX-auto-save t)
(setq TeX-parse-self t)
(setq-default TeX-master nil)
;; (setq TeX-auto-untabify nil)
;; (setq TeX-open-quote "\"\`")
;;; keys
(global-set-key [C-M-up] '(lambda () "Loads mime-setup."
(interactive) (load "mime-setup")))
(global-set-key [C-right] 'end-of-line)
(global-set-key [C-left] 'beginning-of-line)
(global-set-key [M-up] '(lambda () "Scrolls the buffer one line up."
(interactive) (scroll-up -1)))
(global-set-key [M-down] '(lambda () "Scrolls the buffer one line down."
(interactive) (scroll-up 1)))
(global-unset-key [backspace])
(global-set-key [backspace] 'backward-delete-char-untabify)
(global-unset-key [delete])
(global-set-key [delete] 'delete-char)
;(global-set-key [C-backspace] 'backward-kill-line)
(global-set-key [M-delete] 'kill-word)
(global-set-key [C-delete] 'kill-line)
; frames
(if (and (file-exists-p ".emacs.desktop")
window-system)
(progn
; (setq frame-title-format "%b --- a frame of emacs")
;(multiple-frames "%b"
; ("" invocation-name "@" system-name))
; frames
(setq initial-frame-alist
'((top . 5400) (left . 6) (width . 96) (height . 44)
(vertical-scroll-bars . right)))
(make-frame '((top . 0) (left . 0)
(width . 80) (height . 42)
(font .
"-misc-fixed-medium-r-normal-*-17-*-*-*-c-*-iso8859-2")))
(make-frame '((top . 0) (left . 1024)
(width . 80) (height . 42)
(font .
"-misc-fixed-medium-r-normal-*-17-*-*-*-c-*-iso8859-2")))
(make-frame '((top . 768) (left . 0)
(width . 80) (height . 42)
(font .
"-misc-fixed-medium-r-normal-*-17-*-*-*-c-*-iso8859-2")))
(make-frame '((top . 768) (left . 1024)
(width . 80) (height . 42)
(font .
"-misc-fixed-medium-r-normal-*-17-*-*-*-c-*-iso8859-2")))
(make-frame '((top . 1536) (left . 0)
(width . 80) (height . 42)
(font .
"-misc-fixed-medium-r-normal-*-17-*-*-*-c-*-iso8859-2")))
(make-frame '((top . 1536) (left . 1024)
(width . 80) (height . 42)
(font .
"-misc-fixed-medium-r-normal-*-17-*-*-*-c-*-iso8859-2")))
(make-frame '((top . 2304) (left . 0)
(width . 80) (height . 42)
(font .
"-misc-fixed-medium-r-normal-*-17-*-*-*-c-*-iso8859-2")))
(make-frame '((top . 2304) (left . 1024)
(width . 80) (height . 42)
(font .
"-misc-fixed-medium-r-normal-*-17-*-*-*-c-*-iso8859-2")))
(make-frame '((top . 3072) (left . 0)
(width . 80) (height . 42)
(font .
"-misc-fixed-medium-r-normal-*-17-*-*-*-c-*-iso8859-2")))
(make-frame '((top . 3072) (left . 1024)
(width . 80) (height . 42)
(font .
"-misc-fixed-medium-r-normal-*-17-*-*-*-c-*-iso8859-2")))
(make-frame '((top . 3840) (left . 0)
(width . 80) (height . 42)
(font .
"-misc-fixed-medium-r-normal-*-17-*-*-*-c-*-iso8859-2")))
(make-frame '((top . 3840) (left . 1024)
(width . 80) (height . 42)
(font .
"-misc-fixed-medium-r-normal-*-17-*-*-*-c-*-iso8859-2")))
(make-frame '((top . 4608) (left . 0)
(width . 80) (height . 42)
(font .
"-misc-fixed-medium-r-normal-*-17-*-*-*-c-*-iso8859-2")))
(make-frame '((top . 4608) (left . 1024)
(width . 80) (height . 42)
(font .
"-misc-fixed-medium-r-normal-*-17-*-*-*-c-*-iso8859-2")))
; desktop
(load "desktop")
(desktop-load-default)
(desktop-read)
(kill-buffer "*scratch*")
))
--
mailto:[email protected]
http://zls.mimuw.edu.pl/~mikon/home.html
The one good thing about repeating your mistakes is that you know when
to cringe.
--- End Message ---
--- Begin Message ---
Hi! I'm closing this bug, since it affected emacs21, and the current
version is 23. If you still encounter this problem, please feel free to
re-open it and move it to the appropriate package, or ask me to do it.
Solveig
--- End Message ---