]> code.delx.au - gnu-emacs/blobdiff - lisp/ChangeLog
interactive-p & file permission bits
[gnu-emacs] / lisp / ChangeLog
index c6587f7d5eaf5b92d2553ee5dc6720917a58ca68..98644202476b3e01b3fa412b3fd9c57dd8d37ab0 100644 (file)
@@ -1,5 +1,246 @@
+2004-11-13  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
+
+       * printing.el: Doc fix.  Insert :version tag into all defcustom.
+       Handle interactive-p as is recommended in Emacs Lisp Reference.  Set
+       the file permission bits for newly created files.  Reported by Glenn
+       Morris <gmorris+emacs@ast.cam.ac.uk>.  The printing menu
+       specification (in `pr-menu-spec') was merged.  Suggested by Stefan
+       Monnier <monnier@iro.umontreal.ca>.
+       (pr-version): New version number (6.8.3).
+       (pr-file-modes): New option.
+       (pr-interactive-p): New var.
+       (pr-save-interactive, pr-save-file-modes): New macros.
+       (pr-setup): Code fix.
+       (pr-menu-spec): Menu specification merged.
+       (pr-call-process, pr-text2ps): Set file permission bits.
+       (pr-despool-print): Set file permission bits.  Handle interactive-p as
+       is recommended.
+       (pr-interface, pr-ps-directory-preview)
+       (pr-ps-directory-using-ghostscript, pr-ps-directory-print)
+       (pr-ps-directory-ps-print, pr-ps-buffer-preview)
+       (pr-ps-buffer-using-ghostscript, pr-ps-buffer-print)
+       (pr-ps-buffer-ps-print, pr-ps-region-preview)
+       (pr-ps-region-using-ghostscript, pr-ps-region-print)
+       (pr-ps-region-ps-print, pr-ps-mode-preview)
+       (pr-ps-mode-using-ghostscript, pr-ps-mode-print, pr-ps-mode-ps-print)
+       (pr-printify-directory, pr-txt-directory, pr-despool-preview)
+       (pr-despool-using-ghostscript, pr-despool-ps-print)
+       (pr-ps-file-up-preview, pr-ps-file-using-ghostscript)
+       (pr-ps-file-up-ps-print, pr-toggle-file-duplex, pr-toggle-file-tumble)
+       (pr-toggle-file-landscape, pr-toggle-ghostscript, pr-toggle-faces)
+       (pr-toggle-spool, pr-toggle-duplex, pr-toggle-tumble)
+       (pr-toggle-landscape, pr-toggle-upside-down, pr-toggle-line)
+       (pr-toggle-zebra, pr-toggle-header, pr-toggle-header-frame)
+       (pr-toggle-lock, pr-toggle-region, pr-toggle-mode, pr-ps-name)
+       (pr-txt-name, pr-ps-utility, pr-ps-fast-fire, pr-txt-fast-fire)
+       (pr-menu-lock, pr-update-menus, pr-ps-utility-args)
+       (pr-set-outfilename, pr-interface-ps-print, pr-interface-preview):
+       Handle interactive-p as is recommended.
+
+2004-11-13  Daniel Pfeiffer  <occitan@esperanto.org>
+
+       * progmodes/cc-mode.el (c-basic-common-initc-font-lock-init)
+       (c-font-lock-init): Eliminate obsolete make-local-hook.
+       (c-mode, c++-mode, objc-mode, java-mode, idl-mode, pike-mode)
+       (awk-mode): Use run-mode-hooks.
+
+       * progmodes/cperl-mode.el (cperl-mode): Use run-mode-hooks.
+
+2004-11-13  Kim F. Storm  <storm@cua.dk>
+
+       * mouse.el (mouse-drag-copy-region): Add :version.
+       (mouse-drag-mode-line-1): Let bind mouse-autoselect-window to nil
+       while dragging mode line, so mode line can be dragged downwards.
+       (mouse-drag-region-1): Let bind make-cursor-line-fully-visible
+       while pressing mouse button so window doesn't scroll until we
+       release the mouse if clicking on partially visible line.
+
+2004-11-12  Jay Belanger  <belanger@truman.edu>
+
+       * calc/calc-graph.el (calc-dumb-map):  Declare 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):
+       Declare them.
+       (calc-graph-format-data):  Don't check if var-PlotRejects is
+       bound.
+       (calc-graph-plot, calc-graph-compute-3d):  Remove references to
+       the unused variable y3vec.
+       (calc-graph-show-dumb):  Remove reference to unused variable
+       found-pt.
+       (calc-graph-kill-hook, calc-graph-plot):  Remove 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): Replace undeclared variables with the
+       above newly declared variables.
+
+2004-11-12  Diane Murray  <dsm@muenster.de>  (tiny change)
+
+       * mail/rmail.el (rmail-get-new-mail): Use the renamed variables
+       `rsf-beep' and `rsf-sleep-after-message'.
+
+       * mail/rmail-spam-filter.el (rmail-spam-filter): Only check white
+       list if `message-sender' is non-nil.
+
+2004-11-12  Kevin Rodgers  <ihs_4664@yahoo.com>  (tiny change)
+
+       * desktop.el (desktop-create-buffer, desktop-save): Avoid some
+       consing by using mapc instead of mapcar.
+
+2004-11-12  Nick Roberts  <nickrob@snap.net.nz>
+
+       * tooltip.el (require): Explain why CL is needed.
+
+2004-11-11  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
+
+       * printing.el: Insert :version into defgroup (printing).  All reference
+       to Files option in menubar were changed to File.
+       (pr-version): New version number (6.8.2).
+       (pr-get-symbol): Call easy-menu-intern.
+       (pr-region-active-p): Now is a fun (it was defsubst).  To avoid
+       compilation gripes.
+
+2004-11-11  Stefan Monnier  <monnier@iro.umontreal.ca>
+
+       * emacs-lisp/byte-opt.el (byte-compile-inline-expand): Understand the
+       new byte-compile-function-environment binding to t.
+
+       * font-lock.el (font-lock-fontify-syntactically-region):
+       Don't forget to highlight the last char when we hit `end'.
+
+       * mwheel.el (mouse-wheel-progressive-speed): Fix typo in name.
+       (mwheel-scroll): Adjust accordingly.
+
+       * cvs-status.el: Reduce spurious warnings.
+       (cvs-status-checkout): Remove.
+       (cvs-status-mode-map): Use cvs-mode-checkout instead.
+
+       * pcvs.el (cvs-mode-checkout): New command.
+
+       * international/iso-cvt.el (iso-cvt-define-menu): Fix typo.
+
+       * tooltip.el: Require CL.
+
+       * emacs-lisp/bytecomp.el: Use push.
+       (byte-compile-file-form-defalias): Rename from byte-compile-defalias.
+       (defalias): Remove the `byte-compile' property and add
+       a `byte-hunk-handler'.
+
+2004-11-11  Juri Linkov  <juri@jurta.org>
+
+       * info.el (Info-search): Save match data for isearch.
+       Skip Tag Table node.
+
+       * descr-text.el (describe-char): Replace syntax-after with code
+       from its previous version.
+
+       * files.el (magic-mode-alist): Use optimization for SGML mode too.
+       (set-auto-mode): Doc fix.  Remove unused variable `xml'.
+
+       * international/mule.el (sgml-html-meta-auto-coding-function):
+       Remove > after <html to allow HTML attributes.
+
+2004-11-11  Jay Belanger  <belanger@truman.edu>
+
+       * calc/calc-comb.el (math-prime-factors-finished):  Declare it as
+       a variable.
+       (calcFunc-dfac):  Replace unbound max by n.
+       (math-stirling-local-cache):  New variable.
+       (math-stirling-number, math-stirling-1, math-stirling-2):
+       Replace the variable `cache' by the declared variable
+       math-stirling-local-cache.
+       (var-RandSeed):  Declare it as a variable.
+       (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):
+       Declare 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):  Move 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):
+       Declare them as variables.
+
+2004-11-11  Jay Belanger  <belanger@truman.edu>
+
+       * calc/calc-ext.el (math-defcache):  Use defvar for the new
+       variables it creates.
+
+2004-11-11  Lars Hansen  <larsh@math.ku.dk>
+
+       * desktop.el (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.
+
+2004-11-11  Stefan Monnier  <monnier@iro.umontreal.ca>
+
+       * printing.el (pr-get-symbol): Don't downcase.
+
+2004-11-10  Jay Belanger  <belanger@truman.edu>
+
+       * calc/calc-aent.el (calc-do-quick-calc):  Use kill-new to append
+       string to kill-ring.
+
+       * calc/calc-aent.el (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):  Make m a local variable.
+
+       * calc/calc-ext.el (math-read-expr):  Use declared variables
+       math-exp-pos, math-exp-old-pos, math-exp-str, math-exp-token,
+       math-exp-keep-spaces.
+
+       * calc/calc-forms.el (math-read-angle-bracket):  Use declared
+       variables math-exp-pos, math-exp-str.
+
+       * calc/calc-lang.el (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.
+
+       * calc/calc-vec.el (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.
+
 2004-11-10  Stefan Monnier  <monnier@iro.umontreal.ca>
 
+       * files.el (magic-mode-alist): Reduce backtracking in the HTML regexp.
+
        * textmodes/sgml-mode.el (sgml-tag-text-p): New fun.
        (sgml-parse-tag-backward): Use it to skip spurious < or >.
 
 2004-11-10  Nick Roberts  <nickrob@snap.net.nz>
 
        * tooltip.el: Don't require cl, comint, gud, gdb-ui for
-       compilation. The resulting compiler warnings appear to be
-       harmless.
+       compilation. The resulting compiler warnings appear to be harmless.
 
 2004-11-10  Daniel Pfeiffer  <occitan@esperanto.org>
 
        (diary-from-outlook-gnus, diary-from-outlook-rmail): Do not use
        interactive-p; but rather new optional argument NOCONFIRM.
 
-2004-11-09  Stefan  <monnier@iro.umontreal.ca>
+2004-11-09  Stefan Monnier  <monnier@iro.umontreal.ca>
 
        * emacs-lisp/easymenu.el (easy-menu-intern): Revert to no-downcasing.
        (easy-menu-name-match): Revert correspondingly.
 
        * emacs-lisp/easymenu.el (easy-menu-get-map): Fix last change.
 
-2004-11-06  Stefan  <monnier@iro.umontreal.ca>
+2004-11-06  Stefan Monnier  <monnier@iro.umontreal.ca>
 
        * emacs-lisp/easymenu.el (easy-menu-get-map-look-for-name): Remove.
        (easy-menu-lookup-name): New fun to replace it.