# HG changeset patch # User Mark A. Hershberger # Date 1101970505 0 # Node ID d6515597c65a01cce6677b1b2e96215aad37734c # Parent ff6b2a793277641ea05caeeb9f64499ee9ba326c 2004-12-02 Mark A. Hershberger * xml.el (xml-parse-dtd): Don't show validity messages when xml-validating-parser is nil. (xml-substitute-special): Fix validity error messages to actually show the unexpandable entity. Added validity error if & isn't followed by an entity. (xml-parse-tag): Concatnate any string following the a section to the parsed CDATA. diff -r ff6b2a793277 -r d6515597c65a lisp/ChangeLog --- a/lisp/ChangeLog Thu Dec 02 06:53:43 2004 +0000 +++ b/lisp/ChangeLog Thu Dec 02 06:55:05 2004 +0000 @@ -1,3 +1,13 @@ +2004-12-02 Mark A. Hershberger + + * xml.el (xml-parse-dtd): Don't show validity messages when + xml-validating-parser is nil. + (xml-substitute-special): Fix validity error messages to + actually show the unexpandable entity. Added validity error if & + isn't followed by an entity. + (xml-parse-tag): Concatnate any string following the a + section to the parsed CDATA. + 2004-12-01 Luc Teirlinck * kmacro.el (kmacro-default-counter-format): New var. @@ -57,6 +67,7 @@ * textmodes/tex-mode.el (tex-main-file): Add a compatibility with AUCTeX. +>>>>>>> 1.6704 2004-11-30 Jay Belanger * calc/calc-arith.el (math-possible-signs): Made stronger checks @@ -7693,115 +7704,7 @@ (compilation-forget-errors): Don't localize already local compilation-locs and remove FIXME about refontifying. -2004-04-14 Kim F. Storm - - * startup.el (emacs-quick-startup): New defvar (set by -Q). - (command-line): New option -Q. Like -q --no-site-file, but - in addition it also disables menu-bar, tool-bar, scroll-bars, - tool-tips, and the blinking cursor. - (command-line-1): Skip startup screen if -Q. - (fancy-splash-head): Use ":align-to center" prop to center splash image. - - * emulation/cua-base.el (cua-read-only-cursor-color) - (cua-overwrite-cursor-color, cua-global-mark-cursor-color): Doc fix. - -2004-04-13 Dave Love - - * progmodes/python.el: Doc fixes. Changes for compiler warnings. - (syntax): Don't require. - (python) : Add :version. - (python-quote-syntax): Re-written. - (inferior-python-mode): Move stuff here from run-python and add - some more. - (python-preoutput-continuation, python-preoutput-result) - (python-dotty-syntax-table): New. - (python-describe-symbol): Use them. - (run-python): Move stuff to inferior-python-mode. Modify code - loaded into Python. - (python-send-region): Use python-proc, python-send-string. - (python-send-string): Send newlines too. Callers changed. - (python-load-file): Re-written. - (python-eldoc-function): New. - (info-look): Don't require. - (python-after-info-look): New. A modified version of former - top-level code for use with eval-after-load. - (python-maybe-jython, python-guess-indent): Use widened buffer. - (python-fill-paragraph): Re-written. - (python-mode): Fix outline-regexp. Set outline-heading-end-regexp, - eldoc-print-current-symbol-info-function. Add to eldoc-mode-hook. - -2004-04-13 Stefan Monnier - - * progmodes/python.el (run-python): Use compilation-shell-minor-mode. - Set compilation-error-regexp-alist earlier. - - * progmodes/compile.el (compilation-minor-mode-map) - (compilation-shell-minor-mode-map, compile-mouse-goto-error) - (compile-goto-error): Re-merge the mouse and non-mouse commands. - -2004-04-12 Stefan Monnier - - * progmodes/compile.el (compile-goto-error): Select the buffer/window - corresponding to the event. - -2004-04-12 Joe Buehler - - * loadup.el: Add cygwin to system-type list, for unexec() support. - -2004-04-12 John Paul Wallington - - * ibuffer.el (ibuffer-delete-window-on-quit): Remove. - (ibuffer-restore-window-config-on-quit): New variable to replace - `ibuffer-delete-window-on-quit'. Update all references. - (ibuffer-prev-window-config): New variable. - (ibuffer-quit): Restore previous window configuration instead of - deleting window. - (ibuffer): Save window configuration before showing Ibuffer buffer. - - * help.el (describe-mode): Doc fix. - -2004-04-12 Stefan Monnier - - * progmodes/compile.el (compilation-mode-font-lock-keywords): Fix test - not to treat nil as a function. - - * vc-arch.el (vc-arch-root): Be a bit more careful. - (vc-arch-register): Save the buffer if we modified it. - (vc-arch-delete-rej-if-obsolete): Save excursion. - (vc-arch-find-file-hook): Use the simpler after-save-hook. - (vc-arch-responsible-p, vc-arch-init-version): New functions. - - * net/ldap.el (ldap-search): Use list*. - -2004-04-12 Juri Linkov - - * info.el (Info-follow-reference): Allow multiline reference name. - -2004-04-11 Dave Love - - * emacs-lisp/bytecomp.el (byte-compile-cond): Fix last change. - - * progmodes/python.el: New file. - -2004-04-11 Andre Spiegel - - * vc-hooks.el (vc-arg-list): Function removed. - (vc-default-workfile-unchanged-p): Use condition-case to check for - backward compatibility. - - * vc.el (vc-print-log): Use condition-case to check for backward - compatibility. - -2004-04-11 Juri Linkov - - * dired.el (dired-faces): New defgroup. - (dired-header, dired-mark, dired-marked, dired-flagged) - (dired-warning, dired-directory, dired-symlink, dired-ignored): - New faces. - (dired-header-face, dired-mark-face, dired-marked-face) - (dired-flagged-face, dired-warning-face, dired-directory-face) - (dired-symlink-face, dired-ignored-face): New face variables. - (dired-font-lock-keywords): Use them instead of font-lock faces. +2004-04-14 Split the rule for dired marks into 3 separate rules: for marks, marked file names and flagged file names.