1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003
|
1997-10-19 SL Baur <steve@altair.xemacs.org>
* Makefile: Specify POSIX.
Adrian Aichner <aichner@ecf.teradyne.com>
1997-07-02 Steven L Baur <steve@altair.xemacs.org>
* Makefile (autoloads): New targets to automatically rebuild
autoloads and custom-loads.
1997-06-27 Steven L Baur <steve@altair.xemacs.org>
* Makefile (CONTRIBELC): Remove hardcoded dependency on
tex-jp.el -- only bytecompile if running XEmacs/Mule.
- Add byte-compilation of custom-load.el.
Sat Apr 5 09:40:23 1997 Steven L Baur <steve@altair.xemacs.org>
* Makefile (STYLESRC): Move style/*.el files to etc/auctex/style.
* tex.el (TeX-lisp-directory): Restore previous setting.
Thu Apr 17 14:25:44 1997 Per Abrahamsen <abraham@dina.kvl.dk>
* Version 9.7p released.
Sat Apr 12 22:38:15 1997 Per Abrahamsen <abraham@dina.kvl.dk>
* tex.el: Added customize information.
* tex-buf.el: Ditto.
Sun Apr 06 19:28:11 1997 Per Abrahamsen <abraham@dina.kvl.dk>
* Version 9.7o released.
Sun Apr 6 19:23:37 1997 Per Abrahamsen <abraham@dina.kvl.dk>
* latex.el (LaTeX-equation-label): New variable.
(LaTeX-eqnarray-label): New variable.
(LaTeX-label): Support `figure*', `label*', `equation', and
`eqnarray'.
(LaTeX-env-figure): Support `table*'.
Patch by Joes Staal <staal@geo.tudelft.nl>.
Fri Mar 28 12:23:15 1997 Per Abrahamsen <abraham@dina.kvl.dk>
* latex.el (LaTeX-down-section): Doc fix.
(LaTeX-section-heading): Ditto.
(LaTeX-section-title): Ditto.
(LaTeX-env-array): Ditto.
(TeX-braces-user-association): Ditto.
(LaTeX-fill-region-as-paragraph): Ditto.
(LaTeX-math-abbrev-prefix): Ditto.
(LaTeX-math-mode): Ditto.
(TeX-arg-right-insert-p): Ditto.
(latex-mode): Ditto.
Wed Mar 26 21:14:44 1997 Per Abrahamsen <abraham@dina.kvl.dk>
* Version 9.7n released.
Wed Mar 26 21:12:53 1997 Per Abrahamsen <abraham@dina.kvl.dk>
* latex.el (LaTeX-math-default): Fixed hebrew delimiters.
Patch by John Griffith <griffith@sfs.nphil.uni-tuebingen.de>.
Wed Mar 26 21:09:50 1997 Per Abrahamsen <abraham@dina.kvl.dk>
* latex.el (LaTeX-209-to-2e): Use `buffer-substring-no-properties'.
Reported by Graham Gough <graham@cs.man.ac.uk>.
Mon Mar 17 13:35:46 1997 Per Abrahamsen <abraham@dina.kvl.dk>
* Version 9.7m released.
Mon Mar 17 13:25:45 1997 Per Abrahamsen <abraham@dina.kvl.dk>
* tex.el (TeX-auto-generate): Only generate when needed.
(TeX-auto-generate-global): Ditto.
Patch by Helmut Geyer <Helmut.Geyer@IWR.Uni-Heidelberg.De>.
* Makefile (install-contrib): Don't move elc files twice. Patch
by Helmut Geyer <Helmut.Geyer@IWR.Uni-Heidelberg.De>.
Thu Mar 13 12:10:03 1997 Per Abrahamsen <abraham@dina.kvl.dk>
* style/danish.el: Copied from `style/dk.el'.
* Makefile (STYLESRC): Added `style/danish.el'.
Suggested by Lars Frellesen <frelle@math-tech.dk>.
Tue Mar 04 11:29:23 1997 Per Abrahamsen <abraham@dina.kvl.dk>
* Version 9.7l released.
Tue Mar 4 11:27:43 1997 Per Abrahamsen <abraham@dina.kvl.dk>
* Makefile (some): Don't use `style/*.elc'.
Thu Feb 27 11:02:24 1997 Per Abrahamsen <abraham@dina.kvl.dk>
* tex.el (TeX-electric-macro): Default to space after dot.
Wed Feb 26 23:15:27 1997 Per Abrahamsen <abraham@dina.kvl.dk>
* Version 9.7k released.
Wed Feb 26 23:14:43 1997 Per Abrahamsen <abraham@dina.kvl.dk>
* tex.el (TeX-submit-bug-report): Fix address (sunsite, not iesd!).
Tue Feb 25 17:36:11 1997 Per Abrahamsen <abraham@dina.kvl.dk>
* Version 9.7j released.
Fri Feb 21 09:29:20 1997 Per Abrahamsen <abraham@dina.kvl.dk>
* Makefile (some): New target.
Suggested by Steven L Baur <steve@miranova.com>.
Thu Feb 20 11:30:50 1997 Per Abrahamsen <abraham@dina.kvl.dk>
* Version 9.7i released.
Thu Feb 20 10:59:38 1997 Per Abrahamsen <abraham@dina.kvl.dk>
* tex.el: Removed autoloads that conflicts with `tex-mode.el'.
(TeX-lisp-directory): Default to data-directory.
Thu Feb 20 11:30:50 1997 Per Abrahamsen <abraham@dina.kvl.dk>
* Version 9.7i released.
Thu Feb 20 10:59:38 1997 Per Abrahamsen <abraham@dina.kvl.dk>
* tex.el: Removed autoloads that conflicts with `tex-mode.el'.
(TeX-lisp-directory): Default to data-directory.
Sat Feb 15 18:00:48 1997 Per Abrahamsen <abraham@dina.kvl.dk>
* Version 9.7h released.
Sat Feb 15 13:39:30 1997 Per Abrahamsen <abraham@dina.kvl.dk>
* tex-buf.el (TeX-lisp-directory): Removed.
Fri Feb 07 14:58:29 1997 Per Abrahamsen <abraham@dina.kvl.dk>
* Version 9.7g released.
Thu Feb 6 11:01:35 1997 Karl Eichwalder <ke@ke.Central.DE>
* Makefile (install-lisp): Don't install $(aucdir)/lpath.el and
$(aucdir)/tex-site.el.
(contrib, install-contrib): New targets.
Thu Jan 30 06:59:57 1997 Per Abrahamsen <abraham@dina.kvl.dk>
* latex.el (LaTeX-math-default): uparow -> uparrow. Reported by
Kyeong Soo Kim <kks@baekdu.rgit.wustl.edu>.
Wed Jan 29 04:57:42 1997 Per Abrahamsen <abraham@dina.kvl.dk>
* Makefile (AUCSRC): Removed `ltx-help.el'.
Mon Jan 27 00:52:51 1997 Per Abrahamsen <abraham@dina.kvl.dk>
* Version 9.7f released.
Mon Jan 27 00:40:35 1997 Per Abrahamsen <abraham@dina.kvl.dk>
* latex.el (LaTeX-label-function): New variable.
(LaTeX-label): New function.
(LaTeX-section-label): Use it.
(LaTeX-env-figure): Ditto.
(LaTeX-env-label): Ditto.
Patch supplied by Carsten Dominik <dominik@strw.LeidenUniv.nl> for
better RevTeX.el support.
* latex.el (LaTeX-env-figure): Don't insert \leavevmode, at the
request of David Carlisle <carlisle@ma.man.ac.uk>.
Mon Jan 20 18:41:23 1997 Per Abrahamsen <abraham@dina.kvl.dk>
* Version 9.7e released.
Mon Jan 20 18:38:58 1997 Per Abrahamsen <abraham@dina.kvl.dk>
* tex-buf.el (TeX-parse-error): Support LaTeX warnings. Patch by
Frederic Devernay <devernay@istar.fr>.
(TeX-warning): Ditto.
Fri Jan 17 17:42:20 1997 Per Abrahamsen <abraham@dina.kvl.dk>
* Version 9.7d released.
Fri Jan 17 17:40:39 1997 Per Abrahamsen <abraham@dina.kvl.dk>
* tex-jp.el: XEmacs 20 support by Soren Dayton
<csdayton@cs.uchicago.edu>.
Mon Jan 13 00:52:26 1997 Per Abrahamsen <abraham@dina.kvl.dk>
* Makefile (CP): Use `cp -p'. Suggested by Graham Gough
<graham@cs.man.ac.uk>.
* Version 9.7c released.
Wed Jan 8 15:00:06 1997 Per Abrahamsen <abraham@dina.kvl.dk>
* doc/intro.texi: Spelling fixes by Franklin Chen <chen@adi.com>.
* tex-buf.el (TeX-shell-command-option): Insitialize from
shell-command-switch. Suggested by Fabio@Colorado.EDU (Fabio
Somenzi).
* latex.el (LaTeX-mode-menu): Added sans serif. Patch by Ralf
Fassel <ralf@atg.venture.de>.
Fri Jan 3 13:49:44 1997 Per Abrahamsen <abraham@dina.kvl.dk>
* Makefile (install-lisp): Also install `.el' files. Requested by
several people.
Wed Dec 11 07:32:47 1996 Per Abrahamsen <abraham@dina.kvl.dk>
* Makefile (tex.elc): New entry.
(install-lisp): Use it. Trevor Jim <tjim@saul.cis.upenn.edu>
reported that `make install' wouldn't make the elc files.
Tue Dec 10 16:48:59 1996 Per Abrahamsen <abraham@dina.kvl.dk>
* Version 9.7b released.
Tue Dec 10 07:49:54 1996 Per Abrahamsen <abraham@dina.kvl.dk>
* tex-buf.el (TeX-run-format): Bind `buffer' before `process' to
avoid side effect. Suggested by Frederic Devernay
<devernay@istar.fr>.
* Version 9.7a released.
Tue Dec 10 07:49:56 1996 Per Abrahamsen <abraham@dina.kvl.dk>
* latex.el (LaTeX-fill-region-as-para-do): Minimal support for
`sentence-end-double-space'.
Mon Dec 09 14:58:18 1996 Per Abrahamsen <abraham@dina.kvl.dk>
* Version 9.6m released.
Sun Dec 01 17:33:49 1996 Per Abrahamsen <abraham@dina.kvl.dk>
* Version 9.6l released.
Sun Dec 1 17:31:48 1996 Per Abrahamsen <abraham@dina.kvl.dk>
* tex-jp.el: Patch from IKEMOTO Masahiro
<ikeyan@airlab.cs.ritsumei.ac.jp>.
Fri Nov 29 18:50:26 1996 Per Abrahamsen <abraham@dina.kvl.dk>
* Version 9.6k released.
Fri Nov 22 14:40:05 1996 Per Abrahamsen <abraham@dina.kvl.dk>
* latex.el (LaTeX-mode-menu): Made `LaTeX-math-mode' a toggle.
Sat Nov 16 19:24:39 1996 Per Abrahamsen <abraham@dina.kvl.dk>
* Version 9.6j released.
Thu Nov 14 15:42:38 1996 Per Abrahamsen <abraham@dina.kvl.dk>
* latex.el (LaTeX-common-initialization): Added eqref to
LaTeX-label-list. Suggested by Martin Hagstrom
<martinh@sto.foa.se>.
Wed Nov 13 16:15:36 1996 Per Abrahamsen <abraham@dina.kvl.dk>
* tex-buf.el (TeX-region-create): Disable font lock. Suggested by
several, patch by Christoph Wedler <wedler@fmi.uni-passau.de>.
Tue Nov 5 20:21:07 1996 Per Abrahamsen <abraham@dina.kvl.dk>
* tex.el (TeX-file-extensions): Added "texinfo".
Mon Sep 30 18:45:42 1996 Per Abrahamsen <abraham@dina.kvl.dk>
* latex.el (LaTeX-mode-map): Do not overwrite standard binding of
`M-g'.
* tex.el (popup-mode-menu): Run `LaTeX-menu-update' if present.
Workaround for bug reported by Hendrik Visage
<hendrikv@di.denel.co.za> and othors.
* latex.el (LaTeX-float): Allow nil.
(LaTeX-env-figure): Don't insert float if nil. Feature suggested
by Andre Eickler <eickler@db.fmi.uni-passau.de>.
Mon Sep 16 17:17:59 1996 Per Abrahamsen <abraham@dina.kvl.dk>
* Version 9.6i released.
Mon Sep 16 17:15:02 1996 Per Abrahamsen <abraham@dina.kvl.dk>
* tex.el (TeX-mode-syntax-table): Made `$' have the syntax class
`$' at the suggestion of Mats Bengtsson <matsb@s3.kth.se>.
Sat Aug 31 16:03:52 1996 Per Abrahamsen <abraham@dina.kvl.dk>
* latex.el (TeX-arg-cite): Use `multi-prompt' when asking for
entries.
(TeX-arg-bibliography): Ditto.
Thu Aug 29 22:22:14 1996 Per Abrahamsen <abraham@dina.kvl.dk>
* Makefile: Simplified installation (I hope).
Wed Aug 28 00:22:11 1996 Per Abrahamsen <abraham@dina.kvl.dk>
* Makefile: Removed lacheck.
Fri Aug 23 10:23:45 1996 Per Abrahamsen <abraham@dina.kvl.dk>
* tex-buf.el (TeX-run-command): Change to master directory before
executing command.
(TeX-region-file): Allow dummy second argument.
(TeX-run-background): Run in master directory.
(TeX-run-interactive): Run in master directory.
* tex.el (TeX-master-file): Allow second argument `NONDIRECTOPRY'.
(TeX-expand-list): Set second argument `NONDIRECTORY' to file
entries.
(TeX-master-directory): New function.
* tex.el (TeX-auto-write): Write in master directory.
Thu Aug 22 22:33:45 1996 Per Abrahamsen <abraham@dina.kvl.dk>
* latex.el (LaTeX-current-environment): Ignore comments. Reported
by Stephen Eglen <stephene@cogs.susx.ac.uk>.
* tex.el (TeX-directory-absolute-p): Added `windows-nt'.
* tex-buf.el (TeX-shell): Added `windows-nt'.
(TeX-shell-command-option): Added `emx' and `windows-nt'.
Reported by Ulrich Poetter <poetter@em.uni-frankfurt.d400.de>.
Wed Aug 21 13:57:43 1996 Per Abrahamsen <abraham@dina.kvl.dk>
* tex.el (VirTeX-common-initialization): Removed duplicate
initialization of `words-include-escapes'. Reperted by Mark Hovey
<hovey@math.mit.edu>.
Wed Aug 14 19:43:31 1996 Per Abrahamsen <abraham@dina.kvl.dk>
* Makefile (CONTRIB): Added `font-latex.el'.
Tue Jul 30 12:19:01 1996 Per Abrahamsen <abraham@dina.kvl.dk>
* Makefile (aucdir): Changed `lib' to `share' per new emacs
conventions. Reported by "Edward J. Huff"
<huffe@carbon.chem.nyu.edu>.
Tue Jul 16 20:18:59 1996 Per Abrahamsen <abraham@dina.kvl.dk>
* latex.el (LaTeX-fill-region-as-para-do): Make sure `.}' gets
two spaces at end of sentence when filling.
Mon Jul 15 12:13:36 1996 Per Abrahamsen <abraham@dina.kvl.dk>
* tex.el (TeX-parse-path): Ignore tralining //. Suggested by
Gran Uddeborg <Gran.Uddeborg@carmen.se>.
Sun May 5 11:06:37 1996 Per Abrahamsen <abraham@dina.kvl.dk>
* all: Use version number instead of CVS id.
* tex.el (TeX-mode-map): Don't bind `del'. We aren't supposed to
have any tabs in the first place.
Thu May 2 01:28:52 1996 Per Abrahamsen <abraham@dina.kvl.dk>
* tex.el (TeX-mark-active, TeX-active-mark) [XEmacs]: The
definition of these two were swapped. Bug reported by
Vladimir Alexiev <vladimir@cs.ualberta.ca>.
Thu Apr 25 11:20:03 1996 Per Abrahamsen <abraham@dina.kvl.dk>
* tex.el (TeX-update-style): Don't run parent style hooks for
files that doesn't match `TeX-one-master'. Suggested by many
people.
Wed Apr 24 14:44:13 1996 Per Abrahamsen <abraham@dina.kvl.dk>
* latex.el (LaTeX-close-environment): Bind
`next-line-add-newlines' to t. Patch by Fritz Knabe
<knabe@matecumbe.ing.puc.cl>.
Mon Apr 1 16:36:04 1996 Per Abrahamsen <abraham@dina.kvl.dk>
* latex.el (LaTeX-fill-region-as-para-do): Fill `.}' as a sentence
end. Patch by Fritz Knabe <knabe@matecumbe.ing.puc.cl>.
Mon Mar 11 22:56:30 1996 Per Abrahamsen <abraham@dina.kvl.dk>
* latex.el (LaTeX-math-cal): Use `\mathcal{}' under LaTeX2e.
Reported by Mate Wierdl <wierdlm@zebra.msci.memphis.edu>.
Tue Mar 5 17:27:39 1996 Per Abrahamsen <abraham@dina.kvl.dk>
* tex-info.el (texinfo-mode): Rely on texinfo.el to provide the
outline regexp.
Tue Feb 20 09:43:29 1996 Per Abrahamsen <abraham@dina.kvl.dk>
* tex.el (TeX-command-menu-queue, TeX-command-menu-queue-entry):
New functions supporting printer queue queries from the menu. By
Ulrik Dickow <dickow@nbi.dk>
(TeX-command-menu-entry): Use them.
Tue Feb 13 19:50:18 1996 Per Abrahamsen <abraham@dina.kvl.dk>
* style/swedish.el: Support for Swedish quotation style by "G\vran
Uddeborg" <gvran@uddeborg.pp.se>.
Thu Dec 21 16:49:19 1995 Per Abrahamsen <abraham@dina.kvl.dk>
* latex.el (LaTeX-math-default): Added more definitions by Mehmet
Balcilar <MBALCIL@econ.wayne.edu>.
Mon Dec 18 18:58:22 1995 Per Abrahamsen <abraham@dina.kvl.dk>
* latex.el (LaTeX-fill-region-as-paragraph): Removed old version.
(LaTeX-math-menu): Redefined the math mode menu.
Thu Dec 14 19:51:15 1995 Per Abrahamsen <abraham@dina.kvl.dk>
* latex.el (LaTeX-math-menu): New variable.
(LaTeX-mode-menu): Use it. Suggested by Peter S Galbraith
<rhogee@mixing.qc.dfo.ca>.
Mon Nov 13 23:49:16 1995 Per Abrahamsen <abraham@dina.kvl.dk>
* tex.el (VirTeX-common-initialization): Set `comment-multi-line'
to nil.
Fri Oct 13 14:16:36 1995 Per Abrahamsen <abraham@dina.kvl.dk>
* PROBLEMS: Some easymenu explanations.
* tex.el: Require easymenu.el instead of auc-menu.el.
* Makefile (AUCSRC): Removed easymenu.el and auc-menu.el.
(MINMAPSRC): Removed easymenu.el, column.el and cpp.el.
* easymenu.el: File deleted.
* column.el: File deleted.
* cpp.el: File deleted.
* latex.el (LaTeX-math-insert): Don't check if `TeX-insert-macro'
is defined.
(LaTeX-close-environment): Work better when called on an empty
line. Fixed by David Aspinall <da@dcs.ed.ac.uk>.
Thu Oct 12 15:45:00 1995 Per Abrahamsen <abraham@dina.kvl.dk>
* tex.el ('LaTeX-math-mode): Autoload from latex.el instead of
ltx-math.el. Reported by Richard Brankin <richard@num-alg-grp.co.uk>.
Tue Feb 14 20:36:00 1995 Per Abrahamsen <abraham@iesd.auc.dk>
* latex.el (LaTeX-fill-region-as-paragraph): Should now format \\
correctly. Patch by michal@ellpspace.math.ualberta.ca (Michal
Jaegermann).
(LaTeX-fill-region-as-para-do): New function.
(LaTeX-fill-region-as-paragraph): Do not fill paragraphs inside
special environments.
Sun Feb 12 15:40:15 1995 Per Abrahamsen <abraham@iesd.auc.dk>
* tex.el (TeX-byte-compile): Make it default to nil. Suggested by
michal@ellpspace.math.ualberta.ca (Michal Jaegermann).
* tex-buf.el (TeX-command-query): Also offer to save files when
started from a menu. Reported by wscoas@win.tue.nl (Anton
A. Stoorvogel).
(TeX-LaTeX-sentinel): Don't suggest BibTeX if there is no
bibliographies. Suggested by Piet van Oostrum <piet@cs.ruu.nl>.
Sat Feb 11 21:44:19 1995 Per Abrahamsen <abraham@iesd.auc.dk>
* tex-buf.el (TeX-run-format): Protect against being run from a
different buffer. Patch by Michael Kifer
<kifer@sbkifer.cs.sunysb.edu>.
* latex.el (LaTeX-math-default): Moved `Phi' from V to F in
LaTeX-math-mode. Suggested by dak@ind.rwth-aachen.de (David
Kastrup).
* doc/math-ref.tex: Documented it.
Thu Feb 2 11:24:46 1995 Per Abrahamsen <abraham@iesd.auc.dk>
* tex-buf.el (TeX-home-buffer): Added interactive, reported by
edavid@lami.univ-evry.fr.
Wed Feb 1 11:12:35 1995 Per Abrahamsen <abraham@iesd.auc.dk>
* hilit-LaTeX.el: Upgraded to 1.06.
* Makefile (CONTRIB, EXTRAFILES): Moved tex-jp.el to CONTRIB.
Fri Jan 27 21:56:32 1995 Per Abrahamsen <abraham@iesd.auc.dk>
* latex.el (LaTeX-paragraph-commands): Incorrectly placed
parenthesis. Reported by mic@cs.ucsd.edu (Michelangelo Grigni).
Thu Jan 26 13:39:56 1995 Per Abrahamsen <abraham@iesd.auc.dk>
* latex.el (LaTeX-fill-region): Use marker to mark end of region
instead of integer, as the formatting may change the size of the
region.
(LaTeX-common-initialization): Fixed bug in paragraph definitions.
Reported by Steve Anderson <anderson@sapir.ling.yale.edu>.
* tex.el (save-match-data): Added by koba@flab.fujitsu.co.jp
(Kobayashi Shinji).
(bibtex-mode-hook): Don't use add-hook yet. Reported by
koba@flab.fujitsu.co.jp (Kobayashi Shinji).
Wed Jan 25 14:59:57 1995 Per Abrahamsen <abraham@iesd.auc.dk>
* tex.el (change-major-mode-hook): Also clear
`LaTeX-environment-list'.
* Makefile (AUCSRC): Add `auc-menu.el'.
* tex.el: Use auc-menu instead of easymenu.
* tex.el: Inserted comment to mark end of site customization.
Suggested by john@minster.york.ac.uk (John A. Murdie).
* tex.el (change-major-mode-hook): Forgot a set of parentheses.
Reported by Frederic Devernay <Frederic.Devernay@sophia.inria.fr>.
* tex-buf.el (TeX-current-pages): Removed extra parentheses.
Reported by mic@cs.ucsd.edu (Michelangelo Grigni).
Tue Jan 24 23:37:35 1995 Per Abrahamsen (abraham@iesd.auc.dk)
* tex.el (change-major-mode-hook): Added workaround for error in
XEmacs 19.11's `kill-all-local-variables'.
Mon Jan 23 16:03:35 1995 Per Abrahamsen <abraham@iesd.auc.dk>
* latex.el (LaTeX-common-initialization): Removed unnecessary
regexp quotes of `TeX-esc'.
* style/amsart.el: Move `eqref' definition to `style/amstex.el'
and load that style hook.
* style/amstex.el: New file.
* Makefile (STYLESRC): Added it.
Suggested by vb1890@PLAY.CS.NYU.EDU (Victor Boyko).
Sun Jan 22 14:18:12 1995 Per Abrahamsen <abraham@iesd.auc.dk>
* latex.el, ltx-math.el, Makefile: Integrated `ltx-math.el' in
`latex.el'.
* tex-site.el: Removed autoload for `LaTeX-math-mode'.
Thu Jan 19 12:31:45 1995 Per Abrahamsen <abraham@iesd.auc.dk>
* latex.el (latex-mode): Epoch fix by Martin Sjolin
<marsj@ida.liu.se>.
Tue Jan 17 15:12:54 1995 Per Abrahamsen <abraham@iesd.auc.dk>
* bib-cite.el: New file contributed by Peter S. Galbraith
<rhogee@bathybius.meteo.mcgill.ca>.
* hilit-LaTeX.el: New file contributed by Peter S. Galbraith
<rhogee@bathybius.meteo.mcgill.ca>.
* Makefile (CONTRIB): New macro for user contributed emacs lisp
packages, initialized with `bib-cite.el' and `hilit-LaTeX.el'.
(EXTRAFILES): Added $(CONTRIB) to the list.
* tex.el (TeX-directory-absolute-p): Moved definition before
`TeX-macro-private'. Reported by Frederic Devernay
<Frederic.Devernay@sophia.inria.fr>.
* latex.el (LaTeX-common-initialization): Remove extra and wrong
"\\\\par" from `paragraph-separate'. Bug reported by
nijhof@th.rug.nl (Jeroen Nijhof).
Wed Jan 11 11:43:01 1995 Per Abrahamsen <abraham@iesd.auc.dk>
* tex-buf.el (TeX-command-region): Comment fix. Patch by
wlang@rs6000.mri.akh-wien.ac.at (Willi Langenberger).
(TeX-region-create): More outline-mode safe. Patch by
wlang@rs6000.mri.akh-wien.ac.at (Willi Langenberger).
* Makefile (dist): Put version number in WWW page. Suggested by
several people.
* latex.el (LaTeX-auto-regexp-list): Ignore first optional
argument to newenvironment if there is a second. Problem reported
by schiotz@ltf.dth.dk (Jakob Schiotz).
* style/amsbook.el: New file. Problem reported by Denby Wong
<3dw16@qlink.queensu.ca>.
Wed Jan 4 02:34:11 1995 Per Abrahamsen <abraham@iesd.auc.dk>
* tex-buf.el (TeX-TeX-sentinel-check): New function. Updates
`TeX-current-page' with regexp by dodd@roebling.poly.edu (Lawrence
R. Dodd)
(TeX-current-pages): New function.
(TeX-LaTeX-sentinel, TeX-TeX-sentinel): Use it.
y (TeX-format-filter): Removed unnecessary check before assignment.
Tue Jan 3 03:38:54 1995 Per Abrahamsen <abraham@iesd.auc.dk>
* tex-buf.el (TeX-LaTeX-sentinel): Write number of pages even
when labels or citations are missing. Patch by
dodd@roebling.poly.edu (Lawrence R. Dodd).
Wed Dec 7 11:47:56 1994 Per Abrahamsen <abraham@iesd.auc.dk>
* tex.el (TeX-directory-absolute-p): New function. Should work on
both Unix and MS DOS. Problem reported by schiotz@ltf.dth.dk
(Jakob Schiotz).
(TeX-parse-path): Use it.
(TeX-auto-generate): Use it.
Mon Dec 5 12:11:12 1994 Per Abrahamsen <abraham@iesd.auc.dk>
* latex.el (BibTeX-auto-store): Set TeX-auto-parse-length to
999999 locally. Problem reported by Christoph Wedler
<wedler@fmi.uni-passau.de>.
Fri Dec 2 08:20:10 1994 Per Abrahamsen <abraham@iesd.auc.dk>
* tex-buf.el (TeX-LaTeX-sentinel): Check whether the ".bbl" file
need to be udpated before setting TeX-command-next to "BibTeX".
(TeX-command-query): Remove previous change.
Mon Nov 28 01:16:05 1994 Per Abrahamsen <abraham@iesd.auc.dk>
* latex.el (LaTeX-209-to-2e): New function by
Graham Gough <graham@cs.man.ac.uk>.
* latex.el (LaTeX-mode-menu): Move many commands to new
"Miscellaneous" submenu.
* tex-buf.el (TeX-home-buffer): Don't take arg.
* latex.el (LaTeX-left-right-indent-level): New variable
controling indentation for \left \right blocks.
(LaTeX-indent-level-count): New function. Previously only LaTeX
macros at the beginning of the line would affect indentation.
This problem was reported by many people.
(LaTeX-indent-calculate-last): Call `LaTeX-indent-level-count'.
Take into account that \end and \right at the beginning of the
line has immediate effect.
Sun Nov 27 21:08:28 1994 Per Abrahamsen <abraham@iesd.auc.dk>
* latex.el (TeX-global-input-files): New variable. Idea and
sample code by Christophe Mignot <Christophe.Mignot@loria.fr>.
(TeX-arg-input-file): Use it.
(BibTeX-global-style-files): Mention how it is reset in
`TeX-normal-mode'.
(BibTeX-global-files): Ditto.
* tex.el (TeX-normal-mode): Reset `BibTeX-global-style-files',
`BibTeX-global-files', and `TeX-global-input-files' if invoked
with an argument.
* tex-site.el: Ignore trailing `/' when adding TeX-lisp-directory
to load-path. Patch by Michael Ernst
<mernst@research.microsoft.com>.
* tex-buf.el (TeX-LaTeX-sentinel): Don't rerun LaTeX on missing
references, unless they have changed. Patch by schiotz@ltf.dth.dk
(Jakob Schiotz).
* latex.el (LaTeX2e-font-replace): New function.
(LaTeX-common-initialization): Set TeX-font-replace-function to
LaTeX2e-font-replace when using latex2e.
* tex.el (TeX-font-replace-function): New variable.
(TeX-font): Use it.
TeX-font-replace-function and LaTeX2e-font-replace were
contributed by Peter Thiemann
<thiemann@provence.informatik.uni-tuebingen.de>.
Tue Nov 22 14:21:05 1994 Per Abrahamsen <abraham@iesd.auc.dk>
* MSDOS: Added. Contributed by schiotz@ltf.dth.dk (Jakob
Schiotz).
* OEMACS: Removed.
* tex.el (VirTeX-common-initialization): Make
`words-include-escapes' a local variable before setting it.
Reported by Bo Nygaard Bai <bai@iesd.auc.dk>.
Tue Nov 15 11:12:38 1994 Per Abrahamsen <abraham@iesd.auc.dk>
* tex.el (TeX-auto-store): Change to functions that prevent the
auto file buffer from entering emacs-lisp-mode.
(TeX-auto-insert): Don't rely on emacs-lisp-mode for indentation.
Suggested by Stefan Schf (schoef@informatik.uni-oldenburg.de).
Fri Nov 11 16:37:54 1994 Per Abrahamsen <abraham@iesd.auc.dk>
* tex.el (TeX-macro-global): Change to `standard' path.
Wed Nov 9 22:35:21 1994 Per Abrahamsen <abraham@iesd.auc.dk>
* tex-buf.el (TeX-command-query): Suggest TeX-command-default
again if bbl file is newer than dvi file.
Mon Nov 7 19:16:07 1994 Per Abrahamsen <abraham@iesd.auc.dk>
* tex.el (TeX-submit-bug-report): Indicate LaTeX-version.
Suggested by schiotz@ltf.dth.dk (Jakob Schiotz).
Wed Oct 26 15:37:53 1994 Per Abrahamsen <abraham@iesd.auc.dk>
* Makefile (dist): Automatically update AUC-TeX-version and
AUC-TeX-date in tex.el
* tex.el (AUC-TeX-version): Added AUC-TeX-version and
AUC-TeX-date from auc-ver.el.
* auc-ver.el: File removed.
* tex.el: Added version specific code from seperate files.
* tex-19.el, tex-18.el, tex-lcd.el: Files removed.
Tue Oct 25 13:05:36 1994 Per Abrahamsen <abraham@iesd.auc.dk>
* doc/auc-tex.texi (Projects): Removed an implemented item.
* tex.el (TeX-command-current): New variable.
(TeX-command-select-master): New function.
(TeX-command-select-buffer): New function.
(TeX-command-select-region): New function.
(TeX-command-menu): Use TeX-command-current instead of explicit
file argument.
(TeX-command-menu-print): Remove file argument.
(TeX-command-menu-printer-entry): Don't pass file argument.
(TeX-command-create-menu): Removed.
(TeX-mode-menu): New menu.
(plain-TeX-mode-menu): Removed entries now in TeX-mode-menu.
(plain-TeX-mode-menu): Use `toggle' for bad boxes.
(plain-TeX-common-initialization): Enable TeX-mode-menu.
* latex.el (LaTeX-mode-menu): Removed entries now in
TeX-mode-menu.
(LaTeX-mode-menu): Use `toggle' for bad boxes.
(LaTeX-common-initialization): Enable TeX-mode-menu.
* tex-info.el (TeXinfo-command-menu): New menu.
(TeXinfo-mode-menu): Move commands to new menu.
(TeXinfo-mode-menu): Use `toggle' for bad boxes.
(texinfo-mode): Enable TeXinfo-command-menu.
Mon Oct 24 22:49:51 1994 Per Abrahamsen <abraham@iesd.auc.dk>
* Makefile (AUCSRC): Removed auc-menu.el from AUC TeX distribution.
(MINMAPSRC): Added easymenu.el temporarily to min-map distribution.
* auc-menu.el: Just load easymenu.el when using GNU Emacs.
* easymenu.el Try to use RMS's easymenu instead of auc-menu.
(easy-menu-define): Call `easy-menu-do-define' to do
the real work. Document XEmacs keyword arguments.
(easy-menu-do-define): New function.
(easy-menu-create-keymaps): Support XEmacs keyword arguments in
menu definition.
(easy-menu-remove): Make is a function instead of a macro.
(easy-menu-add): Ditto.
Fri Oct 21 14:46:16 1994 Per Abrahamsen <abraham@iesd.auc.dk>
* doc/auc-tex.texi (Completion): Less confusing BibTeX advice, I hope.
* tex-jp.el: Added patch from koba@flab.fujitsu.co.jp (Kobayashi
Shinji).
* latex.el (TeX-arg-insert-braces): Have \left and \right on
different lines. Patch by thiemann@informatik.uni-tuebingen.de
(Peter Thiemann).
* Makefile (dist): Add CHANGES and ChangeLog files to the ftp
directory. Suggested by Frederic Devernay
<Frederic.Devernay@sophia.inria.fr>.
* latex.el (LaTeX-indent-calculate): Allow nil second element in
`LaTeX-indent-environment-list'.
(LaTeX-indent-environment-list): Added special environments
suggested by thiemann@informatik.uni-tuebingen.de (Peter
Thiemann).
Thu Oct 20 22:58:59 1994 Per Abrahamsen <abraham@iesd.auc.dk>
* tex.el (TeX-auto-list-information): Spelling error.
Tue Oct 18 13:24:26 1994 Per Abrahamsen <abraham@iesd.auc.dk>
* latex.el (LaTeX-common-initialization): Make "LaTeX2e" the
default command if you have set `LaTeX-version' to "2" and is
using "\documentclass".
Thu Oct 6 14:38:52 1994 Per Abrahamsen <abraham@iesd.auc.dk>
* latex.el (LaTeX-paragraph-commands): End each word with a "\\b"
to avoid accidentally matching longer macros.
* tex.el (TeX-add-local-master): Use three %'s when adding buffer
local variables. Suggested by Raymond Toy <toy@rtp.ericsson.se>.
* tex.el (TeX-format-list): Added entry for AmSTeX by Ulf Juergens
<ulf@Mathematik.Uni-Bielefeld.DE>.
* tex.el (ams-tex-mode): Run AmS-TeX-mode-hook, not
plain-TeX-mode-hook. Reported by Ulf Juergens
<ulf@Mathematik.Uni-Bielefeld.DE>.
* tex-buf.el (TeX-format-filter): Add `save-match-data'. Patch by
David Aspinall <da@dcs.edinburgh.ac.uk>.
Wed Sep 14 10:53:15 1994 Per Abrahamsen <abraham@iesd.auc.dk>
* cpp.el: Use RMS's version.
Tue Sep 13 10:59:07 1994 Per Abrahamsen <abraham@iesd.auc.dk>
* doc/history.texi, doc/auc-tex.texi: Fixes from Chris Fearnley
<@vm.uni-c.dk:FEARNLCJ@DUVM>.
Fri Sep 9 13:15:33 1994 Per Abrahamsen <abraham@research.att.com>
* latex.el (LaTeX-insert-environment): Don't fill environments
listed in `LaTeX-indent-environment-list'. Suggestion by Graham
Gough <graham@cs.man.ac.uk>.
* tex.el (LaTeX-command-style): Made latex2e first in the list.
Suggested by Frederic Devernay <Frederic.Devernay@sophia.inria.fr>.
Mon Sep 5 05:14:31 1994 Per Abrahamsen <abraham@research.att.com>
* tex.el (TeX-file-extensions): Added LaTeX2 `cls' extension after
query by jmv@di.uminho.pt (Jose Manuel Valenca).
Tue Aug 30 00:05:28 1994 Per Abrahamsen <abraham@research.att.com>
* tex-jp.el: New version from koba@flab.fujitsu.co.jp (Kobayashi
Shinji).
* tex.el (TeX-command-list): Fifth element is now ignored.
* tex-buf.el (TeX-command-query): Check if region file is newer
than dvi file.
(TeX-command-region): Only query for command _after_ region file
is created.
(TeX-region-create): Only save file if the new content is
different than the original content.
Mon Aug 29 13:41:59 1994 Per Abrahamsen (abraham@research.att.com)
* tex-buf.el (TeX-warning): Use offset for line end. Fixed by
ddw2@sunbim.be (Dominique de Waleffe).
Fri Aug 26 18:17:57 1994 Per Abrahamsen (abraham@iesd.auc.dk)
* doc/auc-tex.texi (Projects): Removed preceding item from
wishlist.
* latex.el (LaTeX-common-initialization): Fix to comments
separating paragraphs by koba@flab.fujitsu.co.jp (Kobayashi
Shinji).
* tex-jp.el (LaTeX-fill-region-as-paragraph): New version for MULE
2.0 by Tomotake FURUHATA <furuhata@trl.ibm.co.jp>.
* tex.el (TeX-function-p): Spelling error in doc.
Tue Aug 23 11:00:35 1994 Per Abrahamsen (abraham@iesd.auc.dk)
* doc/intro.texi (Contacts): Some reformulations.
Sun Aug 21 18:47:23 1994 Per Abrahamsen (abraham@iesd.auc.dk)
* tex-jp.el (TeX-insert-punctuation): Japanese version from
koba@flab.fujitsu.co.jp (Kobayashi Shinji).
Fri Aug 19 14:59:57 1994 Per Abrahamsen (abraham@iesd.auc.dk)
* doc/install.texi: The `site-lisp' directory is also available in
Lucide Emacs 19.10. Reported by Tim Geisler
<geisler@pms.informatik.uni-muenchen.de>.
Thu Aug 18 06:56:53 1994 Per Abrahamsen (abraham@iesd.auc.dk)
* latex.el (TeX-arg-cite): Prompt for multiple keys. Suggested by
Masahiro Kitagawa <kitagawa@ee.es.osaka-u.ac.jp>.
Wed Aug 17 14:00:16 1994 Per Abrahamsen (abraham@iesd.auc.dk)
* style/german.el ("german"): Use `TeX-quote-after-quote'.
Suggested by te@informatik.uni-hannover.de (Thomas Esser).
* latex.el (LaTeX-common-initialization): Error in regexp for
multiple arguments to `\cite', reported by Masahiro Kitagawa
<kitagawa@ee.es.osaka-u.ac.jp>.
Wed Aug 17 01:24:55 1994 Per Abrahamsen (abraham@iesd.auc.dk)
* latex.el (LaTeX-env-figure): Put caption inside center
environment. Suggested by Martin Wunderli <wunderli@inf.ethz.ch>.
* tex.el (TeX-strip-extension): If NODIR is set to `path', remove
the directory part iff it is equal to the current directory, or is
a member of either `TeX-macro-global' or `TeX-macro-private'.
(TeX-master-file): Use `path' for NODIR when querying the user for
a file name. Reported finger@brachio.Informatik.Uni-Dortmund.DE
(Bernd Finger).
Tue Aug 16 12:22:04 1994 Per Abrahamsen (abraham@iesd.auc.dk)
* latex.el (LaTeX-common-initialization): `eqnarray*' should not
have a label. Reported by dodd@roebling.poly.edu (Lawrence R.
Dodd).
Thu Aug 11 16:00:18 1994 Per Abrahamsen (abraham@iesd.auc.dk)
* tex-buf.el (TeX-background-filter): Always show background
output.
Wed Aug 10 19:14:42 1994 Per Abrahamsen (abraham@iesd.auc.dk)
* Makefile (MINMAPSRC): Added `all.el'.
* all.el: New file.
* tex-buf.el (TeX-LaTeX-sentinel): Write "some" if
TeX-current-page is nil. Reported by Michail Rozman
<roz@physik.uni-ulm.de>.
Tue Aug 9 01:26:58 1994 Per Abrahamsen (abraham@iesd.auc.dk)
* auc-menu.el (easy-menu-add): Undid previous change.
(top level `cond'): Use Emacs 18 code if `window-system' is nil.
Patch by Patrice Belleville <patrice@cs.sfu.ca>.
Mon Aug 8 21:40:01 1994 Per Abrahamsen (abraham@iesd.auc.dk)
* tex.el (TeX-electric-macro): No electricity after `.' or `\'.
Sat Aug 6 13:53:01 1994 Per Abrahamsen (abraham@iesd.auc.dk)
* latex.el (LaTeX-paragraph-commands): New variable.
(LaTeX-common-initialization): Use it. Suggested by
liyuan@allwise.research.att.com (Yuan P. Li).
* auc-menu.el (easy-menu-add): Check that `x-popup-menu' is bound
and that we are running under X before calling it. Reported by
Adrian F. Clark <alien@essex.ac.uk>
Thu Aug 4 19:14:53 1994 Per Abrahamsen (abraham@iesd.auc.dk)
* tex-jp.el (LaTeX-fill-region-as-paragraph): Patch for Emacs 19
regexps by koba@flab.fujitsu.co.jp (Kobayashi Shinji) reported by
Uenami Ken'ichi <uenami@rita.cow.melco.co.jp>.
* doc/auc-tex.texi (European): Mention `iso-cvt.el' as suggested
by mike@vlsivie.tuwien.ac.at (Michael Gschwind).
Wed Aug 3 15:36:02 1994 Per Abrahamsen (abraham@iesd.auc.dk)
* doc/history.texi: New file.
* doc/Makefile (HISTORY): Added rule.
* Makefile (EXTRAFILES): Added `ChangeLog'.
(DOCFILES): Added `history.texi'.
* doc/auc-tex.texi (History): Made ready for 9.2. Move history to
`history.texi'.
* doc/changes.texi: Made ready for 9.2. Introduce ChangeLog.
* Makefile (LispInstall): Use "/bin/pwd" instead of "pwd".
reported by mic@cs.ucsd.edu (Michelangelo Grigni).
* ChangeLog: New file.
* Version 9.1 released.
|