diff options
Diffstat (limited to 'lisp/ChangeLog')
| -rw-r--r-- | lisp/ChangeLog | 422 |
1 files changed, 411 insertions, 11 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 6fc7796f339..b443f53ebba 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,8 +1,410 @@ | |||
| 1 | 2004-11-12 Jay Belanger <belanger@truman.edu> | ||
| 2 | |||
| 3 | * calc/calc-graph.el (calc-dumb-map): Declared it. | ||
| 4 | (calc-graph-show-dumb): Check if calc-dumb-map is non-nil rather | ||
| 5 | than unbound. | ||
| 6 | |||
| 7 | (calc-graph-name): Made `end' a local variable. | ||
| 8 | (calc-graph-lookup): Made `varname' a local variable. | ||
| 9 | |||
| 10 | (var-DUMMY, var-DUMMY2, var-PlotRejects, calc-gnuplot-trail-mark): | ||
| 11 | Declared them. | ||
| 12 | |||
| 13 | (calc-graph-format-data): Don't check if var-PlotRejects is | ||
| 14 | bound. | ||
| 15 | |||
| 16 | (calc-graph-plot, calc-graph-compute-3d): Removed references to | ||
| 17 | the unused variable y3vec. | ||
| 18 | |||
| 19 | (calc-graph-show-dumb): Removed reference to unused variable | ||
| 20 | found-pt. | ||
| 21 | |||
| 22 | (calc-graph-kill-hook, calc-graph-plot): Removed reference to | ||
| 23 | calc-graph-prev-kill-hook. | ||
| 24 | |||
| 25 | (calc-graph-yvalue, calc-graph-yvec, calc-graph-numsteps) | ||
| 26 | (calc-graph-numsteps3, calc-graph-xvalue, calc-graph-xvec) | ||
| 27 | (calc-graph-xname, calc-graph-yname, calc-graph-xstep) | ||
| 28 | (calc-graph-ycache, calc-graph-ycacheptr, calc-graph-refine) | ||
| 29 | (calc-graph-keep-file, calc-graph-xval, calc-graph-xlow) | ||
| 30 | (calc-graph-xhigh, calc-graph-yval, calc-graph-yp, calc-graph-xp) | ||
| 31 | (calc-graph-zp, calc-graph-yvector, calc-graph-resolution) | ||
| 32 | (calc-graph-y3value, calc-graph-y3name) | ||
| 33 | (calc-graph-y3step, calc-graph-y3step, calc-graph-zval) | ||
| 34 | (calc-graph-stepcount, calc-graph-is-splot) | ||
| 35 | (calc-graph-surprise-splot, calc-graph-blank) | ||
| 36 | (calc-graph-non-blank, calc-graph-curve-num): New variables. | ||
| 37 | (calc-graph-plot, calc-graph-compute-2d, calc-graph-refine-2d) | ||
| 38 | (calc-graph-recompute-2d, calc-graph-compute-3d) | ||
| 39 | (calc-graph-format-data): Replaced undeclared variables with the | ||
| 40 | above newly declared variables. | ||
| 41 | |||
| 42 | 2004-11-12 Diane Murray <dsm@muenster.de> (tiny change) | ||
| 43 | |||
| 44 | * mail/rmail.el (rmail-get-new-mail): Use the renamed variables | ||
| 45 | `rsf-beep' and `rsf-sleep-after-message'. | ||
| 46 | |||
| 47 | * mail/rmail-spam-filter.el (rmail-spam-filter): Only check white | ||
| 48 | list if `message-sender' is non-nil. | ||
| 49 | |||
| 50 | 2004-11-12 Kevin Rodgers <ihs_4664@yahoo.com> (tiny change) | ||
| 51 | |||
| 52 | * desktop.el (desktop-create-buffer, desktop-save): Avoid some | ||
| 53 | consing by using mapc instead of mapcar. | ||
| 54 | |||
| 55 | 2004-11-12 Nick Roberts <nickrob@snap.net.nz> | ||
| 56 | |||
| 57 | * tooltip.el (require): Explain why CL is needed. | ||
| 58 | |||
| 59 | 2004-11-11 Vinicius Jose Latorre <viniciusjl@ig.com.br> | ||
| 60 | |||
| 61 | * printing.el: Insert :version into defgroup (printing). All reference | ||
| 62 | to Files option in menubar were changed to File. | ||
| 63 | (pr-version): New version number (6.8.2). | ||
| 64 | (pr-get-symbol): Call easy-menu-intern. | ||
| 65 | (pr-region-active-p): Now is a fun (it was defsubst). To avoid | ||
| 66 | compilation gripes. | ||
| 67 | |||
| 68 | 2004-11-11 Stefan Monnier <monnier@iro.umontreal.ca> | ||
| 69 | |||
| 70 | * emacs-lisp/byte-opt.el (byte-compile-inline-expand): Understand the | ||
| 71 | new byte-compile-function-environment binding to t. | ||
| 72 | |||
| 73 | * font-lock.el (font-lock-fontify-syntactically-region): | ||
| 74 | Don't forget to highlight the last char when we hit `end'. | ||
| 75 | |||
| 76 | * mwheel.el (mouse-wheel-progressive-speed): Fix typo in name. | ||
| 77 | (mwheel-scroll): Adjust accordingly. | ||
| 78 | |||
| 79 | * cvs-status.el: Reduce spurious warnings. | ||
| 80 | (cvs-status-checkout): Remove. | ||
| 81 | (cvs-status-mode-map): Use cvs-mode-checkout instead. | ||
| 82 | |||
| 83 | * pcvs.el (cvs-mode-checkout): New command. | ||
| 84 | |||
| 85 | * international/iso-cvt.el (iso-cvt-define-menu): Fix typo. | ||
| 86 | |||
| 87 | * tooltip.el: Require CL. | ||
| 88 | |||
| 89 | * emacs-lisp/bytecomp.el: Use push. | ||
| 90 | (byte-compile-file-form-defalias): Rename from byte-compile-defalias. | ||
| 91 | (defalias): Remove the `byte-compile' property and add | ||
| 92 | a `byte-hunk-handler'. | ||
| 93 | |||
| 94 | 2004-11-11 Juri Linkov <juri@jurta.org> | ||
| 95 | |||
| 96 | * info.el (Info-search): Save match data for isearch. | ||
| 97 | Skip Tag Table node. | ||
| 98 | |||
| 99 | * descr-text.el (describe-char): Replace syntax-after with code | ||
| 100 | from its previous version. | ||
| 101 | |||
| 102 | * files.el (magic-mode-alist): Use optimization for SGML mode too. | ||
| 103 | (set-auto-mode): Doc fix. Remove unused variable `xml'. | ||
| 104 | |||
| 105 | * international/mule.el (sgml-html-meta-auto-coding-function): | ||
| 106 | Remove > after <html to allow HTML attributes. | ||
| 107 | |||
| 108 | 2004-11-11 Jay Belanger <belanger@truman.edu> | ||
| 109 | |||
| 110 | * calc/calc-comb.el (math-prime-factors-finished): Declare it as | ||
| 111 | a variable. | ||
| 112 | (calcFunc-dfac): Replace unbound max by n. | ||
| 113 | (math-stirling-local-cache): New variable. | ||
| 114 | (math-stirling-number, math-stirling-1, math-stirling-2): | ||
| 115 | Replace the variable `cache' by the declared variable | ||
| 116 | math-stirling-local-cache. | ||
| 117 | (var-RandSeed): Declare it as a variable. | ||
| 118 | (math-init-random-base, math-random-digit): Don't check to see if | ||
| 119 | var-RandSeed is bound. | ||
| 120 | (math-random-cache, math-gaussian-cache, calc-verbose-nextprime): | ||
| 121 | Declare them instead of just setting them. | ||
| 122 | (math-init-random-base): Made i a local variable. | ||
| 123 | (math-random-digit): Made math-random-last a local variable. | ||
| 124 | (math-prime-test-cache): Move declaration to before it is used. | ||
| 125 | (math-prime-test-cache-k, math-prime-test-cache-q) | ||
| 126 | (math-prime-test-cache-nm1, math-prime-factors-finished): | ||
| 127 | Declare them as variables. | ||
| 128 | |||
| 129 | 2004-11-11 Jay Belanger <belanger@truman.edu> | ||
| 130 | |||
| 131 | * calc/calc-ext.el (math-defcache): Use defvar for the new | ||
| 132 | variables it creates. | ||
| 133 | |||
| 134 | 2004-11-11 Lars Hansen <larsh@math.ku.dk> | ||
| 135 | |||
| 136 | * desktop.el (desktop-buffer-mode-handlers, desktop-after-read-hook) | ||
| 137 | (desktop-clear-preserve-buffers-regexp, desktop-file-name-format) | ||
| 138 | (desktop-globals-to-clear, desktop-no-desktop-file-hook, desktop-path) | ||
| 139 | (desktop-save): Add :version. | ||
| 140 | |||
| 141 | 2004-11-11 Stefan Monnier <monnier@iro.umontreal.ca> | ||
| 142 | |||
| 143 | * printing.el (pr-get-symbol): Don't downcase. | ||
| 144 | |||
| 145 | 2004-11-10 Jay Belanger <belanger@truman.edu> | ||
| 146 | |||
| 147 | * calc/calc-aent.el (calc-do-quick-calc): Use kill-new to append | ||
| 148 | string to kill-ring. | ||
| 149 | |||
| 150 | * calc/calc-aent.el (calc-alg-exp, math-toks) | ||
| 151 | (math-exp-pos,math-exp-old-pos, math-exp-token) | ||
| 152 | (math-exp-keep-spaces, math-exp-str): New variables. | ||
| 153 | (calc-do-alg-entry, calcAlg-equals, calcAlg-edit) | ||
| 154 | (calcAlg-enter): Use declared variable calc-alg-exp. | ||
| 155 | (math-build-parse-table, math-find-user-token): Use declared | ||
| 156 | variable math-toks. | ||
| 157 | (math-read-exprs, math-read-token, calc-check-user-syntax) | ||
| 158 | (calc-match-user-syntax, match-factor-after, math-read-factor): | ||
| 159 | Use declared variables math-exp-pos math-exp-old-pos. | ||
| 160 | (math-read-exprs, math-read-token, math-read-expr-level) | ||
| 161 | (calc-check-user-syntax, calc-match-user-syntax) | ||
| 162 | (match-factor-after, math-read-factor): Use declared variable | ||
| 163 | math-exp-token. | ||
| 164 | (math-read-exprs, math-read-expr-list, math-read-token) | ||
| 165 | (math-read-factor): Use declared variable math-exp-keep-spaces. | ||
| 166 | (math-read-exprs, math-read-token): Use declared variable | ||
| 167 | math-exp-str. | ||
| 168 | (calc-match-user-syntax): Made m a local variable. | ||
| 169 | |||
| 170 | * calc/calc-ext.el (math-read-expr): Use declared variables | ||
| 171 | math-exp-pos, math-exp-old-pos, math-exp-str, math-exp-token, | ||
| 172 | math-exp-keep-spaces. | ||
| 173 | |||
| 174 | * calc/calc-forms.el (math-read-angle-bracket): Use declared | ||
| 175 | variables math-exp-pos, math-exp-str. | ||
| 176 | |||
| 177 | * calc/calc-lang.el (math-parse-tex-sum): Use declared variable | ||
| 178 | math-exp-old-pos. | ||
| 179 | (math-parse-fortran-vector, math-parse-fortran-vector-end) | ||
| 180 | (math-parse-eqn-prime): Use declared variable math-exp-token. | ||
| 181 | |||
| 182 | * calc/calc-vec.el (math-read-brackets, math-check-for-commas): | ||
| 183 | Use declared variable math-exp-pos. | ||
| 184 | (math-check-for-commas): Use declared variable math-exp-str. | ||
| 185 | (math-read-brackets): Use declared variables math-exp-old-pos, | ||
| 186 | math-exp-keep-spaces. | ||
| 187 | (math-read-brackets, math-read-vector, math-read-matrix): | ||
| 188 | Use declared variable math-exp-token. | ||
| 189 | |||
| 190 | 2004-11-10 Stefan Monnier <monnier@iro.umontreal.ca> | ||
| 191 | |||
| 192 | * files.el (magic-mode-alist): Reduce backtracking in the HTML regexp. | ||
| 193 | |||
| 194 | * textmodes/sgml-mode.el (sgml-tag-text-p): New fun. | ||
| 195 | (sgml-parse-tag-backward): Use it to skip spurious < or >. | ||
| 196 | |||
| 197 | 2004-11-10 Thien-Thi Nguyen <ttn@gnu.org> | ||
| 198 | |||
| 199 | * ebuff-menu.el: Doc fixes throughout. | ||
| 200 | (electric-buffer-menu-mode-hook): New defvar. | ||
| 201 | |||
| 202 | 2004-11-10 Nick Roberts <nickrob@snap.net.nz> | ||
| 203 | |||
| 204 | * tooltip.el: Don't require cl, comint, gud, gdb-ui for | ||
| 205 | compilation. The resulting compiler warnings appear to be harmless. | ||
| 206 | |||
| 207 | 2004-11-10 Daniel Pfeiffer <occitan@esperanto.org> | ||
| 208 | |||
| 209 | * textmodes/conf-mode.el: New file. | ||
| 210 | |||
| 211 | * files.el (auto-mode-alist, magic-mode-alist): Use it. | ||
| 212 | |||
| 213 | 2004-11-09 Stefan Monnier <monnier@iro.umontreal.ca> | ||
| 214 | |||
| 215 | * international/iso-cvt.el (iso-cvt-define-menu): Clean up namespace. | ||
| 216 | |||
| 217 | 2004-11-09 Jay Belanger <belanger@truman.edu> | ||
| 218 | |||
| 219 | * calc/calc-ext.el (calc-init-extensions): Remove old code. | ||
| 220 | |||
| 221 | * calc/calc-ext.el (math-expr-data, math-mt-many, math-mt-func) | ||
| 222 | (calc-z-prefix-buf, calc-z-prefix-msgs): New variables. | ||
| 223 | (calc-z-prefix-help, calc-user-function-list): Use declared | ||
| 224 | variables calc-z-prefix-buf, calc-z-prefix-msgs. | ||
| 225 | (math-map-tree, math-map-tree-rec): Use declared variables | ||
| 226 | math-mt-many, math-mt-func. | ||
| 227 | (math-read-expression, math-read-string): Use declared variable | ||
| 228 | math-expr-data. | ||
| 229 | |||
| 230 | * calc/calc-ext.el (math-normalize-nonstandard): Use declared | ||
| 231 | variable math-normalize-a. | ||
| 232 | |||
| 233 | * calc/calc.el (math-normalize-a): New variable. | ||
| 234 | (math-normalize): Use declared variable math-normalize-a. | ||
| 235 | |||
| 236 | * calc/calc-poly.el (math-expand-form): Use declared variable | ||
| 237 | math-mt-many. | ||
| 238 | |||
| 239 | * calc/calc-rewr.el (math-rewrite, math-rewrite-phase): | ||
| 240 | Use declared variable math-mt-many. | ||
| 241 | (math-rewrite): Use declared variable math-mt-func. | ||
| 242 | |||
| 243 | * calc/calc-vec.el (math-read-brackets, math-read-vector) | ||
| 244 | (math-read-matrix): Use declared variable math-expr-data. | ||
| 245 | |||
| 246 | * calc/calc-lang.el (math-parse-fortran-vector) | ||
| 247 | (math-parse-fortran-vector-end, math-parse-tex-sum) | ||
| 248 | (math-parse-eqn-matrix, math-parse-eqn-prime) | ||
| 249 | (math-read-math-subscr): Use declared variable math-expr-data. | ||
| 250 | |||
| 251 | * calc/calc-aent.el (math-read-exprs, math-read-expr-list) | ||
| 252 | (math-read-expr-level, math-read-token, calc-check-user-syntax) | ||
| 253 | (calc-match-user-syntax, math-read-if, math-factor-after) | ||
| 254 | (math-read-factor): Use declared variable math-expr-data. | ||
| 255 | |||
| 256 | 2004-11-09 Glenn Morris <gmorris@ast.cam.ac.uk> | ||
| 257 | |||
| 258 | * calendar/diary-lib.el (diary-from-outlook) | ||
| 259 | (diary-from-outlook-gnus, diary-from-outlook-rmail): Do not use | ||
| 260 | interactive-p; but rather new optional argument NOCONFIRM. | ||
| 261 | |||
| 262 | 2004-11-09 Stefan Monnier <monnier@iro.umontreal.ca> | ||
| 263 | |||
| 264 | * emacs-lisp/easymenu.el (easy-menu-intern): Revert to no-downcasing. | ||
| 265 | (easy-menu-name-match): Revert correspondingly. | ||
| 266 | |||
| 267 | 2004-11-09 Richard M. Stallman <rms@gnu.org> | ||
| 268 | |||
| 269 | * emacs-lisp/bytecomp.el (byte-compile-defalias): | ||
| 270 | Turn off warnings for the new function even if definition not constant. | ||
| 271 | If the definition isn't a quoted symbol, record (FUNCTION . t). | ||
| 272 | (byte-compile-function-environment): Now allow (FUNCTION . t) as elt. | ||
| 273 | (byte-compile-callargs-warn): Handle (FUNCTION . t). | ||
| 274 | (display-call-tree, byte-compile-arglist-warn): | ||
| 275 | Handle t returned by byte-compile-fdefinition. | ||
| 276 | |||
| 277 | 2004-11-09 Jan Dj,Ad(Brv <jan.h.d@swipnet.se> | ||
| 278 | |||
| 279 | * Makefile.in (maintainer-clean): Depend on distclean. | ||
| 280 | |||
| 281 | * help-fns.el (help-C-file-name): File name must be in build-files | ||
| 282 | to be returned. | ||
| 283 | |||
| 284 | 2004-11-09 Jay Belanger <belanger@truman.edu> | ||
| 285 | |||
| 286 | * calc/calc.el (calc-mode-hook, calc-trail-mode-hook) | ||
| 287 | (calc-start-hook, calc-end-hook, calc-load-hook): New variables. | ||
| 288 | |||
| 289 | * calc/calc.el (calc, calc-trail-display, calc-mode): | ||
| 290 | Remove obsolete sections. | ||
| 291 | |||
| 292 | * calc/calc.el (calc-x-paste-text): Remove. | ||
| 293 | |||
| 294 | * calc/calc-ext.el (calc-init-extensions): Bind calc-yank to | ||
| 295 | mouse-2. | ||
| 296 | |||
| 297 | 2004-11-09 Nick Roberts <nickrob@snap.net.nz> | ||
| 298 | |||
| 299 | * progmodes/gdb-ui.el (gdb-current-stack-level): New variable. | ||
| 300 | (gdb-info-frames-custom, gdb-frame-handler): Use it to find | ||
| 301 | current frame (in case of recursive calls). | ||
| 302 | (gdb-show-changed-values): Add :version keyword. | ||
| 303 | |||
| 304 | 2004-11-08 Stefan Monnier <monnier@iro.umontreal.ca> | ||
| 305 | |||
| 306 | * international/mule-cmds.el: Change coding-system to utf-8. | ||
| 307 | (select-safe-coding-system-interactively): | ||
| 308 | New function extracted from select-safe-coding-system. | ||
| 309 | (select-safe-coding-system): Use it. | ||
| 310 | |||
| 311 | 2004-11-08 Richard M. Stallman <rms@gnu.org> | ||
| 312 | |||
| 313 | * subr.el (syntax-after): Doc fix. | ||
| 314 | |||
| 315 | * paren.el (show-paren-function): Change calls to syntax-after | ||
| 316 | for new way of returning the value. | ||
| 317 | |||
| 318 | * menu-bar.el (menu-bar-file-menu): Make this the real name | ||
| 319 | and menu-bar-files-menu the alias. Use the former. | ||
| 320 | (global-map): Use `file', not `files', as the symbol. | ||
| 321 | |||
| 322 | * info.el (Info-revert-find-node): Don't use beginning-of-buffer. | ||
| 323 | |||
| 324 | * filesets.el (filesets-spawn-external-viewer, filesets-run-cmd): | ||
| 325 | Don't use beginning-of-buffer. | ||
| 326 | (filesets-cmd-show-result): Use with-no-warnings. | ||
| 327 | |||
| 328 | 2004-11-08 Juri Linkov <juri@jurta.org> | ||
| 329 | |||
| 330 | * progmodes/compile.el (compile): Don't overwrite last command in | ||
| 331 | minibuffer history with default command if they are not equal. | ||
| 332 | |||
| 333 | 2004-11-08 Jay Belanger <belanger@truman.edu> | ||
| 334 | |||
| 335 | * calc/calcalg2.el (math-do-integral-methods): Try linear then | ||
| 336 | non-linear substitutions. | ||
| 337 | |||
| 338 | 2004-11-08 Jay Belanger <belanger@truman.edu> | ||
| 339 | |||
| 340 | * calc/calcalg2.el (math-linear-subst-tried): New variable. | ||
| 341 | (math-do-integral): Set `math-linear-subst-tried' to nil. | ||
| 342 | (math-do-integral-methods): Use `math-linear-subst-tried' to | ||
| 343 | determine what type of substitution to try. | ||
| 344 | (math-integ-try-linear-substituion): | ||
| 345 | Set `math-linear-subst-tried' to t. | ||
| 346 | |||
| 347 | 2004-11-08 Kim F. Storm <storm@cua.dk> | ||
| 348 | |||
| 349 | * Makefile.in (bootstrap-clean): New target for 'make bootstrap'. | ||
| 350 | |||
| 351 | 2004-11-07 Juri Linkov <juri@jurta.org> | ||
| 352 | |||
| 353 | * info-look.el (info-lookup): Allow reusing in the current buffer | ||
| 354 | not only *info* buffer, but all (even renamed) Info buffers | ||
| 355 | by checking for major-mode instead of *info* buffer name. | ||
| 356 | (c-mode, autoconf-mode, emacs-lisp-mode, scheme-mode) | ||
| 357 | (octave-mode, maxima-mode) <doc-spec>: | ||
| 358 | Allow long dashes generated by Texinfo 4.7 before definitions. | ||
| 359 | (texinfo-mode) <doc-spec>: Add space to suffix to find command | ||
| 360 | definitions with argument separated by space. | ||
| 361 | |||
| 362 | 2004-11-06 Richard M. Stallman <rms@gnu.org> | ||
| 363 | |||
| 364 | * simple.el (next-error group, face): Move before first use. | ||
| 365 | (next-error-highlight, next-error-highlight-no-select): Likewise. | ||
| 366 | |||
| 367 | * simple.el (line-move-invisible-p): Rename from line-move-invisible. | ||
| 368 | (line-move): New args NOERROR and TO-END. | ||
| 369 | Return t if if succeed in moving specified number of lines. | ||
| 370 | (move-end-of-line): New function. | ||
| 371 | |||
| 372 | * simple.el (beginning-of-buffer-other-window): Use with-no-warnings. | ||
| 373 | (end-of-buffer-other-window): Likewise. | ||
| 374 | |||
| 375 | * simple.el (line-move-ignore-invisible): Default to t. | ||
| 376 | |||
| 377 | * subr.el (syntax-after): Return the syntax letter, not the raw code. | ||
| 378 | |||
| 379 | * emacs-lisp/elp.el (elp-results): Delete wasteful beginning-of-buffer. | ||
| 380 | |||
| 381 | * international/iso-cvt.el (iso-cvt-define-menu): | ||
| 382 | Rename menu-bar-files-menu to menu-bar-file-menu. | ||
| 383 | |||
| 384 | * net/browse-url.el (browse-url-gnome-moz-program) | ||
| 385 | (browse-url-gnome-moz-arguments): Move up before first use. | ||
| 386 | |||
| 387 | * net/tramp.el (tramp group): Add :version. | ||
| 388 | |||
| 389 | * progmodes/ada-xref.el (ada-gdb-application): | ||
| 390 | Use goto-char instead of beginning-of-buffer. | ||
| 391 | |||
| 392 | * progmodes/cperl-mode.el (cperl-info-on-command): | ||
| 393 | Use goto-char instead of beginning-of-buffer. | ||
| 394 | |||
| 395 | * progmodes/idlw-shell.el (idlwave-shell-examine-map): | ||
| 396 | Move up before first use. | ||
| 397 | (idlwave-shell-temp-pro-file): Likewise. | ||
| 398 | (idlwave-shell-temp-rinfo-save-file): Likewise. | ||
| 399 | (idlwave-shell-temp-file): Minor doc fix. | ||
| 400 | |||
| 401 | * textmodes/flyspell.el (flyspell-external-point-words): | ||
| 402 | Use goto-char instead of beginning-of-buffer. | ||
| 403 | |||
| 1 | 2004-11-06 Kai Grossjohann <kai.grossjohann@gmx.net> | 404 | 2004-11-06 Kai Grossjohann <kai.grossjohann@gmx.net> |
| 2 | 405 | ||
| 3 | * net/tramp.el (tramp-coding-commands): Additionally try "uudecode | 406 | * net/tramp.el (tramp-coding-commands): Additionally try "uudecode -o |
| 4 | -o /dev/stdout" before trying "uudecode -o -". Suggested by Han | 407 | /dev/stdout" before trying "uudecode -o -". Suggested by Han Boetes. |
| 5 | Boetes. | ||
| 6 | (tramp-uudecode): Mention `uudecode -o /dev/stdout'. | 408 | (tramp-uudecode): Mention `uudecode -o /dev/stdout'. |
| 7 | 409 | ||
| 8 | 2004-11-06 David Ponce <david@dponce.com> | 410 | 2004-11-06 David Ponce <david@dponce.com> |
| @@ -59,8 +461,7 @@ | |||
| 59 | 461 | ||
| 60 | 2004-11-04 Daniel Pfeiffer <occitan@esperanto.org> | 462 | 2004-11-04 Daniel Pfeiffer <occitan@esperanto.org> |
| 61 | 463 | ||
| 62 | * files.el (set-auto-mode): Don't get error after setting | 464 | * files.el (set-auto-mode): Don't get error after setting -*-mode-*-. |
| 63 | -*-mode-*-. | ||
| 64 | 465 | ||
| 65 | 2004-11-04 Jan Dj,Ad(Brv <jan.h.d@swipnet.se> | 466 | 2004-11-04 Jan Dj,Ad(Brv <jan.h.d@swipnet.se> |
| 66 | 467 | ||
| @@ -182,8 +583,7 @@ | |||
| 182 | (icalendar-convert-diary-to-ical) | 583 | (icalendar-convert-diary-to-ical) |
| 183 | (icalendar-extract-ical-from-buffer): Use only two args for | 584 | (icalendar-extract-ical-from-buffer): Use only two args for |
| 184 | make-obsolete (XEmacs compatibility). | 585 | make-obsolete (XEmacs compatibility). |
| 185 | (icalendar-export-file, icalendar-import-file): Blank at end of | 586 | (icalendar-export-file, icalendar-import-file): Blank at end of prompt. |
| 186 | prompt. | ||
| 187 | (icalendar-export-region): Doc fix. | 587 | (icalendar-export-region): Doc fix. |
| 188 | If error, return non-nil and write errors to a buffer. | 588 | If error, return non-nil and write errors to a buffer. |
| 189 | Use correct weekday for weekly recurring events. | 589 | Use correct weekday for weekly recurring events. |
| @@ -223,16 +623,16 @@ | |||
| 223 | 623 | ||
| 224 | 2004-11-02 Pavel Kobiakov <pk_at_work@yahoo.com> | 624 | 2004-11-02 Pavel Kobiakov <pk_at_work@yahoo.com> |
| 225 | 625 | ||
| 226 | * progmodes/flymake.el (flymake-err-line-patterns): Use | 626 | * progmodes/flymake.el (flymake-err-line-patterns): |
| 227 | `flymake-reformat-err-line-patterns-from-compile-el' to convert | 627 | Use `flymake-reformat-err-line-patterns-from-compile-el' to convert |
| 228 | `compilation-error-regexp-alist-alist' to internal Flymake format. | 628 | `compilation-error-regexp-alist-alist' to internal Flymake format. |
| 229 | 629 | ||
| 230 | * progmodes/flymake.el: eliminated byte-compiler warnings. | 630 | * progmodes/flymake.el: eliminated byte-compiler warnings. |
| 231 | 631 | ||
| 232 | 2004-11-01 Jay Belanger <belanger@truman.edu> | 632 | 2004-11-01 Jay Belanger <belanger@truman.edu> |
| 233 | 633 | ||
| 234 | * calc/calc-frac.el (calc-over-notation): Replaced | 634 | * calc/calc-frac.el (calc-over-notation): Replace `completing-read' |
| 235 | `completing-read' with `interactive "s"'. | 635 | with `interactive "s"'. |
| 236 | 636 | ||
| 237 | 2004-11-01 Jan Dj,Ad(Brv <jan.h.d@swipnet.se> | 637 | 2004-11-01 Jan Dj,Ad(Brv <jan.h.d@swipnet.se> |
| 238 | 638 | ||