This file contains patches to turn version 19.14 of GNU Emacs into 19.15. To apply them, cd to the top of the Emacs source tree, and then run the shell commands below. rm man/emacs-orig.texi patch -p1 < emacs-19.13-19.14.diff diff -cprP --exclude=*.elc emacs-19.14/ChangeLog emacs-19.15/ChangeLog *** emacs-19.14/ChangeLog Thu Jun 17 21:24:04 1993 --- emacs-19.15/ChangeLog Sat Jun 19 17:57:20 1993 *************** *** 1,3 **** --- 1,14 ---- + Sat Jun 19 17:14:27 1993 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu) + + * version 19.15 released. + + Fri Jun 18 11:59:35 1993 Jim Blandy (jimb@geech.gnu.ai.mit.edu) + + * Makefile.in (top_distclean): Use -f switch when cleaning out + lock dir; it might be empty. + + * configure.in: Only check for -lXbsd once. + Thu Jun 17 19:29:56 1993 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu) * Version 19.14 released. diff -cprP --exclude=*.elc emacs-19.14/Makefile.in emacs-19.15/Makefile.in *** emacs-19.14/Makefile.in Wed Jun 16 21:04:47 1993 --- emacs-19.15/Makefile.in Fri Jun 18 21:53:17 1993 *************** *** 452,458 **** top_distclean=\ rm -f config.status build-install ; \ rm -f Makefile ${SUBDIR_MAKEFILES} ; \ ! (cd lock ; rm *) distclean: FRC.distclean (cd src; make ${MFLAGS} distclean) (cd oldXMenu; make ${MFLAGS} distclean) --- 452,458 ---- top_distclean=\ rm -f config.status build-install ; \ rm -f Makefile ${SUBDIR_MAKEFILES} ; \ ! (cd lock ; rm -f *) distclean: FRC.distclean (cd src; make ${MFLAGS} distclean) (cd oldXMenu; make ${MFLAGS} distclean) diff -cprP --exclude=*.elc emacs-19.14/README emacs-19.15/README *** emacs-19.14/README Thu Jun 17 21:24:40 1993 --- emacs-19.15/README Sat Jun 19 17:59:19 1993 *************** *** 1,4 **** ! This directory tree holds version 19.14 of GNU Emacs, the extensible, customizable, self-documenting real-time display editor. See the files `etc/NEWS' and `etc/news.texi' for information on new --- 1,4 ---- ! This directory tree holds version 19.15 of GNU Emacs, the extensible, customizable, self-documenting real-time display editor. See the files `etc/NEWS' and `etc/news.texi' for information on new diff -cprP --exclude=*.elc emacs-19.14/configure emacs-19.15/configure *** emacs-19.14/configure Thu Jun 17 18:04:17 1993 --- emacs-19.15/configure Sat Jun 19 17:02:59 1993 *************** *** 1003,1009 **** echo checking how to run the C preprocessor if test -z "$CPP"; then ! CPP='${CC-cc} -E' cat > conftest.c < Syntax Error --- 1003,1012 ---- echo checking how to run the C preprocessor if test -z "$CPP"; then ! # This must be in double quotes, not single quotes, because CPP may get ! # substituted into the Makefile and ``${CC-cc}'' will simply confuse ! # make. It must be expanded now. ! CPP="${CC-cc} -E" cat > conftest.c < Syntax Error *************** else *** 1016,1021 **** --- 1019,1025 ---- fi rm -f conftest* fi + test ".${verbose}" != "." && echo " setting CPP to $CPP" # Make sure to not get the incompatible SysV /etc/install and # /usr/sbin/install, which might be in PATH before a BSD-like install, *************** case ${HAVE_X11} in *** 1746,1790 **** ;; esac - ### Check for XFree386. It needs special hacks. - lib_havexbsd=no - - LIBS_save="${LIBS}" - LIBS="${LIBS} -lXbsd " - have_lib="" - echo checking for -lXbsd - cat > conftest.c <> this should check the key-bindings and use substitute-command-keys if non-standard (message ! "d-elete, u-ndelete, x-punge, f-ind, o-ther window, r-ename, C-opy, h-elp")) (defun dired-undo () "Undo in a dired buffer. --- 837,843 ---- (dired-why) ;>> this should check the key-bindings and use substitute-command-keys if non-standard (message ! "d-elete, u-ndelete, x-punge, f-ind, o-ther window, R-ename, C-opy, h-elp")) (defun dired-undo () "Undo in a dired buffer. diff -cprP --exclude=*.elc emacs-19.14/lisp/files.el emacs-19.15/lisp/files.el *** emacs-19.14/lisp/files.el Sat Jun 12 21:55:33 1993 --- emacs-19.15/lisp/files.el Sat Jun 19 15:05:52 1993 *************** *** 1550,1555 **** --- 1550,1558 ---- Don't call it from programs! Use `insert-file-contents' instead. \(Its calling sequence is different; see its documentation)." (interactive "fInsert file: ") + (if (file-directory-p filename) + (signal 'file-error (list "Opening input file" "file is a directory" + filename))) (let ((tem (insert-file-contents filename))) (push-mark (+ (point) (car (cdr tem)))))) diff -cprP --exclude=*.elc emacs-19.14/lisp/forms.el emacs-19.15/lisp/forms.el *** emacs-19.14/lisp/forms.el Sat Jun 12 16:53:59 1993 --- emacs-19.15/lisp/forms.el Fri Jun 18 20:15:32 1993 *************** *** 1,5 **** ;;; forms.el -- Forms mode: edit a file as a form to fill in. ! ;;; Copyright (C) 1991 Free Software Foundation, Inc. ;;; Author: Johan Vromans --- 1,5 ---- ;;; forms.el -- Forms mode: edit a file as a form to fill in. ! ;;; Copyright (C) 1991, 1993 Free Software Foundation, Inc. ;;; Author: Johan Vromans *************** *** 201,215 **** ;;; x forms-exit-no-save ;;; DEL forms-prev-record ;;; ! ;;; Standard functions scroll-up, scroll-down, beginning-of-buffer and ! ;;; end-of-buffer are wrapped with re-definitions, which map them to ! ;;; next/prev record and first/last record. ! ;;; Buffer-local variables forms-forms-scroll and forms-forms-jump ! ;;; may be used to control these redefinitions. ;;; - ;;; Function save-buffer is also wrapped to perform a sensible action. - ;;; A revert-file-hook is defined to revert a forms to original. - ;;; ;;; For convenience, TAB is always bound to forms-next-field, so you ;;; don't need the C-c prefix for this command. --- 201,217 ---- ;;; x forms-exit-no-save ;;; DEL forms-prev-record ;;; ! ;;; The bindings of standard functions scroll-up, scroll-down, ! ;;; beginning-of-buffer and end-of-buffer are locally replaced with ! ;;; forms mode functions next/prev record and first/last ! ;;; record. Buffer-local variables forms-forms-scroll and ! ;;; forms-forms-jump (default: t) may be set to nil to inhibit ! ;;; rebinding. ! ;;; ! ;;; A local-write-file hook is defined to save the actual data file ! ;;; instead of the buffer data, a revert-file-hook is defined to ! ;;; revert a forms to original. ;;; ;;; For convenience, TAB is always bound to forms-next-field, so you ;;; don't need the C-c prefix for this command. *************** *** 220,234 **** (provide 'forms) ;;; official (provide 'forms-mode) ;;; for compatibility ! (defconst forms-version "1.2.10" "Version of forms-mode implementation.") - (defvar forms-forms-scrolls t - "If non-null: redefine scroll-up/down to be used with Forms mode.") - - (defvar forms-forms-jumps t - "If non-null: redefine beginning/end-of-buffer to be used with Forms mode.") - (defvar forms-mode-hooks nil "Hook functions to be run upon entering Forms mode.") --- 222,230 ---- (provide 'forms) ;;; official (provide 'forms-mode) ;;; for compatibility ! (defconst forms-version "1.2.11" "Version of forms-mode implementation.") (defvar forms-mode-hooks nil "Hook functions to be run upon entering Forms mode.") *************** *** 256,266 **** "Character to separate multi-line fields (default C-k)") (defvar forms-forms-scroll t ! "Redefine scroll-up/down to perform forms-next/prev-record in Forms mode.") (defvar forms-forms-jump t ! "Redefine beginning/end-of-buffer to perform forms-first/last-record in Forms mode.") ! ;;; Internal variables. --- 252,263 ---- "Character to separate multi-line fields (default C-k)") (defvar forms-forms-scroll t ! "*Non-nil means replace scroll-up/down commands in Forms mode. ! The replacement commands performs forms-next/prev-record.") (defvar forms-forms-jump t ! "*Non-nil means redefine beginning/end-of-buffer in Forms mode. ! The replacement commands performs forms-first/last-record.") ;;; Internal variables. *************** *** 434,441 **** (if forms-mode-map ; already defined nil (setq forms-mode-map (make-keymap)) ! (forms--mode-commands forms-mode-map) ! (forms--change-commands)) ;; find the data file (setq forms--file-buffer (find-file-noselect forms-file)) --- 431,437 ---- (if forms-mode-map ; already defined nil (setq forms-mode-map (make-keymap)) ! (forms--mode-commands forms-mode-map)) ;; find the data file (setq forms--file-buffer (find-file-noselect forms-file)) *************** *** 457,462 **** --- 453,460 ---- (make-local-variable 'minor-mode-alist) ; needed? (forms--set-minor-mode) (forms--set-keymaps) + (make-local-variable 'local-write-file-hooks) + (forms--change-commands) (set-buffer-modified-p nil) *************** *** 779,857 **** "Localize some commands." ;; ;; scroll-down -> forms-prev-record - ;; - (if (fboundp 'forms--scroll-down) - nil - (fset 'forms--scroll-down (symbol-function 'scroll-down)) - (fset 'scroll-down - (function - (lambda (&optional arg) - (interactive "P") - (if (and forms--mode-setup - forms-forms-scroll) - (forms-prev-record arg) - (forms--scroll-down arg)))))) - ;; ;; scroll-up -> forms-next-record ! ;; ! (if (fboundp 'forms--scroll-up) ! nil ! (fset 'forms--scroll-up (symbol-function 'scroll-up)) ! (fset 'scroll-up ! (function ! (lambda (&optional arg) ! (interactive "P") ! (if (and forms--mode-setup ! forms-forms-scroll) ! (forms-next-record arg) ! (forms--scroll-up arg)))))) ;; ;; beginning-of-buffer -> forms-first-record - ;; - (if (fboundp 'forms--beginning-of-buffer) - nil - (fset 'forms--beginning-of-buffer (symbol-function 'beginning-of-buffer)) - (fset 'beginning-of-buffer - (function - (lambda () - (interactive) - (if (and forms--mode-setup - forms-forms-jump) - (forms-first-record) - (forms--beginning-of-buffer)))))) - ;; ;; end-of-buffer -> forms-end-record ! ;; ! (if (fboundp 'forms--end-of-buffer) ! nil ! (fset 'forms--end-of-buffer (symbol-function 'end-of-buffer)) ! (fset 'end-of-buffer ! (function ! (lambda () ! (interactive) ! (if (and forms--mode-setup ! forms-forms-jump) ! (forms-last-record) ! (forms--end-of-buffer)))))) ;; ;; save-buffer -> forms--save-buffer ! ;; ! (if (fboundp 'forms--save-buffer) ! nil ! (fset 'forms--save-buffer (symbol-function 'save-buffer)) ! (fset 'save-buffer ! (function ! (lambda (&optional arg) ! (interactive "p") ! (if forms--mode-setup ! (progn ! (forms--checkmod) ! (save-excursion ! (set-buffer forms--file-buffer) ! (forms--save-buffer arg))) ! (forms--save-buffer arg)))))) ! ;; ! ) (defun forms--help () "Initial help." --- 777,812 ---- "Localize some commands." ;; ;; scroll-down -> forms-prev-record ;; scroll-up -> forms-next-record ! (if forms-forms-scroll ! (progn ! (substitute-key-definition 'scroll-up 'forms-next-record ! (current-local-map) ! (current-global-map)) ! (substitute-key-definition 'scroll-down 'forms-prev-record ! (current-local-map) ! (current-global-map)))) ;; ;; beginning-of-buffer -> forms-first-record ;; end-of-buffer -> forms-end-record ! (if forms-forms-jump ! (progn ! (substitute-key-definition 'beginning-of-buffer 'forms-first-record ! (current-local-map) ! (current-global-map)) ! (substitute-key-definition 'end-of-buffer 'forms-last-record ! (current-local-map) ! (current-global-map)))) ;; ;; save-buffer -> forms--save-buffer ! (add-hook 'local-write-file-hooks ! (function ! (lambda (nil) ! (forms--checkmod) ! (save-excursion ! (set-buffer forms--file-buffer) ! (save-buffer)) ! t)))) (defun forms--help () "Initial help." *************** Usage: (setq forms-number-of-fields *** 1340,1349 **** (set-buffer (get-buffer-create "*forms-mode debug*")) (goto-char (point-max)) (insert ret))))) - - ;;; Disabled Local Variables: - ;;; eval: (headers) - ;;; eval: (setq comment-start ";;; ") - ;;; End: ;;; forms.el ends here. --- 1295,1299 ---- diff -cprP --exclude=*.elc emacs-19.14/lisp/info.el emacs-19.15/lisp/info.el *** emacs-19.14/lisp/info.el Tue Jun 8 00:40:44 1993 --- emacs-19.15/lisp/info.el Sat Jun 19 17:47:06 1993 *************** *** 279,290 **** ;; of the merged dir text. (defvar Info-dir-contents-directory nil) ;; Construct the Info directory node by merging the files named `dir' ;; from various directories. Set the *info* buffer's ;; default-directory to the first directory we actually get any text ;; from. (defun Info-insert-dir () ! (if Info-dir-contents (insert Info-dir-contents) (let ((dirs Info-directory-list) buffers buffer others nodes dirs-done) --- 279,301 ---- ;; of the merged dir text. (defvar Info-dir-contents-directory nil) + ;; Record the file attributes of all the files from which we + ;; constructed Info-dir-contents. + (defvar Info-dir-file-attributes nil) + ;; Construct the Info directory node by merging the files named `dir' ;; from various directories. Set the *info* buffer's ;; default-directory to the first directory we actually get any text ;; from. (defun Info-insert-dir () ! (if (and Info-dir-contents Info-dir-file-attributes ! ;; Verify that none of the files we used has changed ! ;; since we used it. ! (eval (cons 'and ! (mapcar '(lambda (elt) ! (equal (cdr elt) ! (file-attributes (car elt)))) ! Info-dir-file-attributes)))) (insert Info-dir-contents) (let ((dirs Info-directory-list) buffers buffer others nodes dirs-done) *************** *** 316,322 **** (cons (directory-file-name (file-truename (expand-file-name (car dirs)))) dirs-done))) ! (if buffer (setq buffers (cons buffer buffers))))) (setq dirs (cdr dirs))) ;; Distinguish the dir file that comes with Emacs from all the --- 327,337 ---- (cons (directory-file-name (file-truename (expand-file-name (car dirs)))) dirs-done))) ! (if buffer (setq buffers (cons buffer buffers) ! Info-dir-file-attributes ! (cons (cons (buffer-file-name buffer) ! (file-attributes (buffer-file-name buffer))) ! Info-dir-file-attributes))))) (setq dirs (cdr dirs))) ;; Distinguish the dir file that comes with Emacs from all the diff -cprP --exclude=*.elc emacs-19.14/lisp/man.el emacs-19.15/lisp/man.el *** emacs-19.14/lisp/man.el Sun Jun 13 14:00:11 1993 --- emacs-19.15/lisp/man.el Fri Jun 18 21:43:11 1993 *************** *** 72,78 **** ;;; Code: (require 'assoc) - (provide 'man) ;; vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv ;; user variables --- 72,77 ---- *************** This regular expression should start wit *** 196,201 **** --- 195,202 ---- (defvar Man-reference-regexp "[-a-zA-Z0-9_.]+\\(([0-9][a-zA-Z+]*)\\)?" "*Regular expression describing a reference in the SEE ALSO section.") + (defvar Man-switches "" + "*Switches passed to the man command, as a single string.") ;; ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ ;; end user variables *************** This regular expression should start wit *** 254,260 **** (defun Man-build-man-command () "Builds the entire background manpage and cleaning command." ! (let ((command "man %s 2>&1 | ") (flist Man-filter-list)) (while flist (let ((pcom (car (car flist))) --- 255,261 ---- (defun Man-build-man-command () "Builds the entire background manpage and cleaning command." ! (let ((command (concat "man " Man-switches " %s 2>&1 | ")) (flist Man-filter-list)) (while flist (let ((pcom (car (car flist))) *************** Man-see-also-regexp Regexp f *** 555,560 **** --- 556,562 ---- Man-first-heading-regexp Regexp for first heading on a manpage. Man-reference-regexp Regexp matching a references in SEE ALSO. Man-version-number Superman version number. + Man-switches Background `man' command switches. The following key bindings are currently in effect in the buffer: \\{Man-mode-map}" *************** the echo area." *** 776,780 **** --- 778,785 ---- (if (consp arg) (insert "Using Superman version " Man-version-number ".") (message "Using Superman version %s." Man-version-number))) + + + (provide 'man) ;;; man.el ends here diff -cprP --exclude=*.elc emacs-19.14/lisp/mouse.el emacs-19.15/lisp/mouse.el *** emacs-19.14/lisp/mouse.el Thu Jun 17 14:17:27 1993 --- emacs-19.15/lisp/mouse.el Fri Jun 18 13:55:26 1993 *************** *** 274,288 **** and complete the secondary selection." (interactive "e") (let ((posn (event-start click))) ! (select-window (posn-window posn)) ! ;; Cancel any preexisting secondary selection. ! (if mouse-secondary-overlay ! (delete-overlay mouse-secondary-overlay)) ! (if (numberp (posn-point posn)) ! (progn ! (or mouse-secondary-start ! (setq mouse-secondary-start (make-marker))) ! (move-marker mouse-secondary-start (posn-point posn)))))) (defun mouse-set-secondary (click) "Set the secondary selection to the text that the mouse is dragged over. --- 274,289 ---- and complete the secondary selection." (interactive "e") (let ((posn (event-start click))) ! (save-excursion ! (set-buffer (window-buffer (posn-window posn))) ! ;; Cancel any preexisting secondary selection. ! (if mouse-secondary-overlay ! (delete-overlay mouse-secondary-overlay)) ! (if (numberp (posn-point posn)) ! (progn ! (or mouse-secondary-start ! (setq mouse-secondary-start (make-marker))) ! (move-marker mouse-secondary-start (posn-point posn))))))) (defun mouse-set-secondary (click) "Set the secondary selection to the text that the mouse is dragged over. *************** This must be bound to a mouse drag event *** 291,303 **** (let ((posn (event-start click)) beg (end (event-end click))) ! (select-window (posn-window posn)) ! (if (numberp (posn-point posn)) ! (setq beg (posn-point posn))) ! (if mouse-secondary-overlay ! (move-overlay mouse-secondary-overlay beg (posn-point end)) ! (setq mouse-secondary-overlay (make-overlay beg (posn-point end)))) ! (overlay-put mouse-secondary-overlay 'face 'secondary-selection))) (defun mouse-drag-secondary (click) "Set the secondary selection to the text that the mouse is dragged over. --- 292,305 ---- (let ((posn (event-start click)) beg (end (event-end click))) ! (save-excursion ! (set-buffer (window-buffer (posn-window posn))) ! (if (numberp (posn-point posn)) ! (setq beg (posn-point posn))) ! (if mouse-secondary-overlay ! (move-overlay mouse-secondary-overlay beg (posn-point end)) ! (setq mouse-secondary-overlay (make-overlay beg (posn-point end)))) ! (overlay-put mouse-secondary-overlay 'face 'secondary-selection)))) (defun mouse-drag-secondary (click) "Set the secondary selection to the text that the mouse is dragged over. *************** This must be bound to a mouse drag event *** 304,313 **** This must be bound to a button-down mouse event." (interactive "e") (let ((posn (event-start click))) ! (select-window (posn-window posn)) ! ;; Set point temporarily, so user sees where it is. ! (if (numberp (posn-point posn)) ! (goto-char (posn-point posn))))) (defun mouse-kill-secondary () "Kill the text in the secondary selection." --- 306,319 ---- This must be bound to a button-down mouse event." (interactive "e") (let ((posn (event-start click))) ! (save-window-excursion ! (select-window (posn-window posn)) ! ;; Set point temporarily, so user sees where it is. ! (save-excursion ! (if (numberp (posn-point posn)) ! (goto-char (posn-point posn))) ! (setq unread-command-events ! (cons (read-event) unread-command-events)))))) (defun mouse-kill-secondary () "Kill the text in the secondary selection." *************** which prepares for a second click to del *** 346,359 **** (cons (cons (car kill-ring) start) buffer-undo-list)))) ;; Otherwise, save this region. ! (select-window (posn-window (event-start click))) ! (kill-ring-save start click-posn) ! (if mouse-secondary-overlay ! (move-overlay mouse-secondary-overlay start click-posn) ! (setq mouse-secondary-overlay (make-overlay start click-posn))) ! (overlay-put mouse-secondary-overlay 'face 'secondary-selection) ! (setq mouse-save-then-kill-posn ! (list (car kill-ring) start click-posn))))) (defun mouse-buffer-menu (event) "Pop up a menu of buffers for selection with the mouse. --- 352,366 ---- (cons (cons (car kill-ring) start) buffer-undo-list)))) ;; Otherwise, save this region. ! (save-excursion ! (set-buffer (window-buffer (posn-window (event-start click)))) ! (kill-ring-save start click-posn) ! (if mouse-secondary-overlay ! (move-overlay mouse-secondary-overlay start click-posn) ! (setq mouse-secondary-overlay (make-overlay start click-posn))) ! (overlay-put mouse-secondary-overlay 'face 'secondary-selection) ! (setq mouse-save-then-kill-posn ! (list (car kill-ring) start click-posn)))))) (defun mouse-buffer-menu (event) "Pop up a menu of buffers for selection with the mouse. diff -cprP --exclude=*.elc emacs-19.14/lisp/rmailout.el emacs-19.15/lisp/rmailout.el *** emacs-19.14/lisp/rmailout.el Wed Jun 16 15:23:56 1993 --- emacs-19.15/lisp/rmailout.el Fri Jun 18 21:23:02 1993 *************** *** 162,174 **** ;; If we can do it, read a little of the file ;; to check whether it is an RMAIL file. ;; If it is, don't mess it up. ! (insert-file-contents file-name nil 0 20) ! (if (looking-at "BABYL OPTIONS:\n") ! (error (save-excursion ! (set-buffer rmailbuf) ! (substitute-command-keys ! "Use \\[rmail-output-to-rmail-file] to output to Rmail file `%s'")) ! (file-name-nondirectory file-name))) (erase-buffer) (insert-buffer-substring rmailbuf) (insert "\n") --- 162,175 ---- ;; If we can do it, read a little of the file ;; to check whether it is an RMAIL file. ;; If it is, don't mess it up. ! (and (file-readable-p file-name) ! (progn (insert-file-contents file-name nil 0 20) ! (looking-at "BABYL OPTIONS:\n")) ! (error (save-excursion ! (set-buffer rmailbuf) ! (substitute-command-keys ! "Use \\[rmail-output-to-rmail-file] to output to Rmail file `%s'")) ! (file-name-nondirectory file-name))) (erase-buffer) (insert-buffer-substring rmailbuf) (insert "\n") diff -cprP --exclude=*.elc emacs-19.14/lisp/version.el emacs-19.15/lisp/version.el *** emacs-19.14/lisp/version.el Thu Jun 17 19:58:09 1993 --- emacs-19.15/lisp/version.el Sat Jun 19 17:55:45 1993 *************** *** 25,31 **** ;; The following line is modified automatically ;; by loading inc-version.el, each time a new Emacs is dumped. ! (defconst emacs-version "19.14.0" "\ Version numbers of this version of Emacs.") (defconst emacs-build-time (current-time-string) "\ --- 25,31 ---- ;; The following line is modified automatically ;; by loading inc-version.el, each time a new Emacs is dumped. ! (defconst emacs-version "19.15.0" "\ Version numbers of this version of Emacs.") (defconst emacs-build-time (current-time-string) "\ diff -cprP --exclude=*.elc emacs-19.14/man/ChangeLog emacs-19.15/man/ChangeLog *** emacs-19.14/man/ChangeLog Thu Jun 17 19:43:53 1993 --- emacs-19.15/man/ChangeLog Sat Jun 19 17:57:31 1993 *************** *** 1,3 **** --- 1,11 ---- + Sat Jun 19 17:14:27 1993 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu) + + * version 19.15 released. + + Fri Jun 18 21:51:49 1993 Jim Blandy (jimb@geech.gnu.ai.mit.edu) + + * Makefile (distclean): It's rm, not rf. + Thu Jun 17 19:29:56 1993 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu) * Version 19.14 released. diff -cprP --exclude=*.elc emacs-19.14/man/Makefile emacs-19.15/man/Makefile *** emacs-19.14/man/Makefile Wed Jun 16 12:38:16 1993 --- emacs-19.15/man/Makefile Fri Jun 18 21:50:24 1993 *************** *** 67,73 **** clean: mostlyclean rm -f *.dvi distclean: clean ! rf -f texindex realclean: distclean rm -f *.aux *.cps *.fns *.kys *.pgs *.vrs rm -f ../info/emacs* ../info/cl* ../info/forms* ../info/vip* --- 67,73 ---- clean: mostlyclean rm -f *.dvi distclean: clean ! rm -f texindex realclean: distclean rm -f *.aux *.cps *.fns *.kys *.pgs *.vrs rm -f ../info/emacs* ../info/cl* ../info/forms* ../info/vip* Only in emacs-19.14/man: emacs-orig.texi diff -cprP --exclude=*.elc emacs-19.14/man/emacs.aux emacs-19.15/man/emacs.aux *** emacs-19.14/man/emacs.aux Wed Jun 9 13:55:18 1993 --- emacs-19.15/man/emacs.aux Fri Jun 18 15:48:36 1993 *************** *** 422,428 **** 'xrdef {ForIndent Num-snt}{Section'tie22.15.2.3} 'xrdef {ForIndent Conv-pg}{189} 'xrdef {ForIndent Conv-snt}{Section'tie22.15.2.4} ! 'xrdef {ForIndent Vars-pg}{189} 'xrdef {ForIndent Vars-snt}{Section'tie22.15.2.5} 'xrdef {Fortran Comments-pg}{190} 'xrdef {Fortran Comments-snt}{Section'tie22.15.3} --- 422,428 ---- 'xrdef {ForIndent Num-snt}{Section'tie22.15.2.3} 'xrdef {ForIndent Conv-pg}{189} 'xrdef {ForIndent Conv-snt}{Section'tie22.15.2.4} ! 'xrdef {ForIndent Vars-pg}{190} 'xrdef {ForIndent Vars-snt}{Section'tie22.15.2.5} 'xrdef {Fortran Comments-pg}{190} 'xrdef {Fortran Comments-snt}{Section'tie22.15.3} *************** *** 534,541 **** 'xrdef {Dired Deletion-snt}{Section'tie28.3} 'xrdef {Dired Visiting-pg}{237} 'xrdef {Dired Visiting-snt}{Section'tie28.4} ! 'xrdef {Marks vs. Flags-pg}{238} ! 'xrdef {Marks vs. Flags-snt}{Section'tie28.5} 'xrdef {Operating on Files-pg}{239} 'xrdef {Operating on Files-snt}{Section'tie28.6} 'xrdef {Shell Commands in Dired-pg}{240} --- 534,541 ---- 'xrdef {Dired Deletion-snt}{Section'tie28.3} 'xrdef {Dired Visiting-pg}{237} 'xrdef {Dired Visiting-snt}{Section'tie28.4} ! 'xrdef {Marks vs Flags-pg}{238} ! 'xrdef {Marks vs Flags-snt}{Section'tie28.5} 'xrdef {Operating on Files-pg}{239} 'xrdef {Operating on Files-snt}{Section'tie28.6} 'xrdef {Shell Commands in Dired-pg}{240} *************** *** 602,788 **** 'xrdef {Appointments-snt}{Section'tie29.10} 'xrdef {Daylight Savings-pg}{264} 'xrdef {Daylight Savings-snt}{Section'tie29.11} ! 'xrdef {Daylight Savings-pg}{265} 'xrdef {Daylight Savings-snt}{Chapter'tie30} ! 'xrdef {GNUS-pg}{265} 'xrdef {GNUS-snt}{Section'tie30.1} ! 'xrdef {Buffers of GNUS-pg}{265} 'xrdef {Buffers of GNUS-snt}{Section'tie30.1.1} ! 'xrdef {GNUS Startup-pg}{265} 'xrdef {GNUS Startup-snt}{Section'tie30.1.2} ! 'xrdef {Summary of GNUS-pg}{266} 'xrdef {Summary of GNUS-snt}{Section'tie30.1.3} ! 'xrdef {Sorting-pg}{267} 'xrdef {Sorting-snt}{Section'tie30.2} ! 'xrdef {Shell-pg}{270} 'xrdef {Shell-snt}{Section'tie30.3} ! 'xrdef {Single Shell-pg}{270} 'xrdef {Single Shell-snt}{Section'tie30.3.1} ! 'xrdef {Interactive Shell-pg}{270} 'xrdef {Interactive Shell-snt}{Section'tie30.3.2} ! 'xrdef {Shell Mode-pg}{272} 'xrdef {Shell Mode-snt}{Section'tie30.3.3} ! 'xrdef {Shell History-pg}{273} 'xrdef {Shell History-snt}{Section'tie30.3.4} ! 'xrdef {Narrowing-pg}{274} 'xrdef {Narrowing-snt}{Section'tie30.4} ! 'xrdef {Hardcopy-pg}{275} 'xrdef {Hardcopy-snt}{Section'tie30.5} ! 'xrdef {Two-Column-pg}{275} 'xrdef {Two-Column-snt}{Section'tie30.6} ! 'xrdef {Editing Binary Files-pg}{276} 'xrdef {Editing Binary Files-snt}{Section'tie30.7} ! 'xrdef {Emacs Server-pg}{277} 'xrdef {Emacs Server-snt}{Section'tie30.8} ! 'xrdef {Recursive Edit-pg}{278} 'xrdef {Recursive Edit-snt}{Section'tie30.9} ! 'xrdef {Dissociated Press-pg}{279} 'xrdef {Dissociated Press-snt}{Section'tie30.10} ! 'xrdef {Amusements-pg}{280} 'xrdef {Amusements-snt}{Section'tie30.11} ! 'xrdef {Emulation-pg}{280} 'xrdef {Emulation-snt}{Section'tie30.12} ! 'xrdef {Customization-pg}{283} 'xrdef {Customization-snt}{Chapter'tie31} ! 'xrdef {Minor Modes-pg}{283} 'xrdef {Minor Modes-snt}{Section'tie31.1} ! 'xrdef {Variables-pg}{284} 'xrdef {Variables-snt}{Section'tie31.2} ! 'xrdef {Examining-pg}{285} 'xrdef {Examining-snt}{Section'tie31.2.1} ! 'xrdef {Edit Options-pg}{286} 'xrdef {Edit Options-snt}{Section'tie31.2.2} ! 'xrdef {Hooks-pg}{286} 'xrdef {Hooks-snt}{Section'tie31.2.3} ! 'xrdef {Locals-pg}{287} 'xrdef {Locals-snt}{Section'tie31.2.4} ! 'xrdef {File Variables-pg}{289} 'xrdef {File Variables-snt}{Section'tie31.2.5} ! 'xrdef {Keyboard Macros-pg}{290} 'xrdef {Keyboard Macros-snt}{Section'tie31.3} ! 'xrdef {Basic Kbd Macro-pg}{291} 'xrdef {Basic Kbd Macro-snt}{Section'tie31.3.1} ! 'xrdef {Save Kbd Macro-pg}{292} 'xrdef {Save Kbd Macro-snt}{Section'tie31.3.2} ! 'xrdef {Kbd Macro Query-pg}{293} 'xrdef {Kbd Macro Query-snt}{Section'tie31.3.3} ! 'xrdef {Key Bindings-pg}{293} 'xrdef {Key Bindings-snt}{Section'tie31.4} ! 'xrdef {Keymaps-pg}{294} 'xrdef {Keymaps-snt}{Section'tie31.4.1} ! 'xrdef {Prefix Keymaps-pg}{295} 'xrdef {Prefix Keymaps-snt}{Section'tie31.4.2} ! 'xrdef {Local Keymaps-pg}{295} 'xrdef {Local Keymaps-snt}{Section'tie31.4.3} ! 'xrdef {Minibuffer Maps-pg}{296} 'xrdef {Minibuffer Maps-snt}{Section'tie31.4.4} ! 'xrdef {Rebinding-pg}{296} 'xrdef {Rebinding-snt}{Section'tie31.4.5} ! 'xrdef {Init Rebinding-pg}{298} 'xrdef {Init Rebinding-snt}{Section'tie31.4.6} ! 'xrdef {Function Keys-pg}{298} 'xrdef {Function Keys-snt}{Section'tie31.4.7} ! 'xrdef {Mouse Buttons-pg}{299} 'xrdef {Mouse Buttons-snt}{Section'tie31.4.8} ! 'xrdef {Disabling-pg}{301} 'xrdef {Disabling-snt}{Section'tie31.4.9} ! 'xrdef {Keyboard Translations-pg}{301} 'xrdef {Keyboard Translations-snt}{Section'tie31.5} ! 'xrdef {Syntax-pg}{302} 'xrdef {Syntax-snt}{Section'tie31.6} ! 'xrdef {Init File-pg}{302} 'xrdef {Init File-snt}{Section'tie31.7} ! 'xrdef {Init Syntax-pg}{303} 'xrdef {Init Syntax-snt}{Section'tie31.7.1} ! 'xrdef {Init Examples-pg}{304} 'xrdef {Init Examples-snt}{Section'tie31.7.2} ! 'xrdef {Terminal Init-pg}{305} 'xrdef {Terminal Init-snt}{Section'tie31.7.3} ! 'xrdef {Find Init-pg}{306} 'xrdef {Find Init-snt}{Section'tie31.7.4} ! 'xrdef {Find Init-pg}{307} 'xrdef {Find Init-snt}{Chapter'tie32} ! 'xrdef {Quitting-pg}{307} 'xrdef {Quitting-snt}{Section'tie32.1} ! 'xrdef {Lossage-pg}{308} 'xrdef {Lossage-snt}{Section'tie32.2} ! 'xrdef {DEL Gets Help-pg}{308} 'xrdef {DEL Gets Help-snt}{Section'tie32.2.1} ! 'xrdef {Stuck Recursive-pg}{308} 'xrdef {Stuck Recursive-snt}{Section'tie32.2.2} ! 'xrdef {Screen Garbled-pg}{309} 'xrdef {Screen Garbled-snt}{Section'tie32.2.3} ! 'xrdef {Text Garbled-pg}{309} 'xrdef {Text Garbled-snt}{Section'tie32.2.4} ! 'xrdef {Unasked-for Search-pg}{309} 'xrdef {Unasked-for Search-snt}{Section'tie32.2.5} ! 'xrdef {Emergency Escape-pg}{310} 'xrdef {Emergency Escape-snt}{Section'tie32.2.6} ! 'xrdef {Total Frustration-pg}{310} 'xrdef {Total Frustration-snt}{Section'tie32.2.7} ! 'xrdef {Bugs-pg}{311} 'xrdef {Bugs-snt}{Section'tie32.3} ! 'xrdef {Bug Criteria-pg}{311} 'xrdef {Bug Criteria-snt}{Section'tie32.3.1} ! 'xrdef {Understanding Bug Reporting-pg}{312} 'xrdef {Understanding Bug Reporting-snt}{Section'tie32.3.2} ! 'xrdef {Checklist-pg}{313} 'xrdef {Checklist-snt}{Section'tie32.3.3} ! 'xrdef {Sending Patches-pg}{316} 'xrdef {Sending Patches-snt}{Section'tie32.3.4} ! 'xrdef {Service-pg}{318} 'xrdef {Service-snt}{Section'tie32.4} ! 'xrdef {Command Arguments-pg}{319} 'xrdef {Command Arguments-snt}{Appendix'tie'char65{}} ! 'xrdef {Ordinary Arguments-pg}{319} 'xrdef {Ordinary Arguments-snt}{Section'tie'char65.1} ! 'xrdef {Initial Options-pg}{320} 'xrdef {Initial Options-snt}{Section'tie'char65.2} ! 'xrdef {Command Example-pg}{320} 'xrdef {Command Example-snt}{Section'tie'char65.3} ! 'xrdef {Resume Arguments-pg}{321} 'xrdef {Resume Arguments-snt}{Section'tie'char65.4} ! 'xrdef {Display X-pg}{321} 'xrdef {Display X-snt}{Section'tie'char65.5} ! 'xrdef {Font X-pg}{322} 'xrdef {Font X-snt}{Section'tie'char65.6} ! 'xrdef {Colors X-pg}{323} 'xrdef {Colors X-snt}{Section'tie'char65.7} ! 'xrdef {Window Size X-pg}{324} 'xrdef {Window Size X-snt}{Section'tie'char65.8} ! 'xrdef {Borders X-pg}{324} 'xrdef {Borders X-snt}{Section'tie'char65.9} ! 'xrdef {Icons X-pg}{325} 'xrdef {Icons X-snt}{Section'tie'char65.10} ! 'xrdef {Resources X-pg}{325} 'xrdef {Resources X-snt}{Section'tie'char65.11} ! 'xrdef {Antinews-pg}{329} 'xrdef {Antinews-snt}{Appendix'tie'char66{}} - 'xrdef {Manifesto-pg}{337} - 'xrdef {Manifesto-snt}{} - 'xrdef {Manifesto-pg}{337} - 'xrdef {Manifesto-snt}{} - 'xrdef {Manifesto-pg}{338} - 'xrdef {Manifesto-snt}{} - 'xrdef {Manifesto-pg}{338} - 'xrdef {Manifesto-snt}{} 'xrdef {Manifesto-pg}{339} 'xrdef {Manifesto-snt}{} 'xrdef {Manifesto-pg}{339} 'xrdef {Manifesto-snt}{} ! 'xrdef {Manifesto-pg}{339} 'xrdef {Manifesto-snt}{} 'xrdef {Manifesto-pg}{340} 'xrdef {Manifesto-snt}{} 'xrdef {Manifesto-pg}{341} 'xrdef {Manifesto-snt}{} ! 'xrdef {Glossary-pg}{347} 'xrdef {Glossary-snt}{} ! 'xrdef {Key Index-pg}{365} 'xrdef {Key Index-snt}{} ! 'xrdef {Command Index-pg}{373} 'xrdef {Command Index-snt}{} ! 'xrdef {Variable Index-pg}{383} 'xrdef {Variable Index-snt}{} ! 'xrdef {Concept Index-pg}{387} 'xrdef {Concept Index-snt}{} --- 602,788 ---- 'xrdef {Appointments-snt}{Section'tie29.10} 'xrdef {Daylight Savings-pg}{264} 'xrdef {Daylight Savings-snt}{Section'tie29.11} ! 'xrdef {Daylight Savings-pg}{267} 'xrdef {Daylight Savings-snt}{Chapter'tie30} ! 'xrdef {GNUS-pg}{267} 'xrdef {GNUS-snt}{Section'tie30.1} ! 'xrdef {Buffers of GNUS-pg}{267} 'xrdef {Buffers of GNUS-snt}{Section'tie30.1.1} ! 'xrdef {GNUS Startup-pg}{267} 'xrdef {GNUS Startup-snt}{Section'tie30.1.2} ! 'xrdef {Summary of GNUS-pg}{268} 'xrdef {Summary of GNUS-snt}{Section'tie30.1.3} ! 'xrdef {Sorting-pg}{269} 'xrdef {Sorting-snt}{Section'tie30.2} ! 'xrdef {Shell-pg}{272} 'xrdef {Shell-snt}{Section'tie30.3} ! 'xrdef {Single Shell-pg}{272} 'xrdef {Single Shell-snt}{Section'tie30.3.1} ! 'xrdef {Interactive Shell-pg}{272} 'xrdef {Interactive Shell-snt}{Section'tie30.3.2} ! 'xrdef {Shell Mode-pg}{274} 'xrdef {Shell Mode-snt}{Section'tie30.3.3} ! 'xrdef {Shell History-pg}{275} 'xrdef {Shell History-snt}{Section'tie30.3.4} ! 'xrdef {Narrowing-pg}{276} 'xrdef {Narrowing-snt}{Section'tie30.4} ! 'xrdef {Hardcopy-pg}{277} 'xrdef {Hardcopy-snt}{Section'tie30.5} ! 'xrdef {Two-Column-pg}{277} 'xrdef {Two-Column-snt}{Section'tie30.6} ! 'xrdef {Editing Binary Files-pg}{278} 'xrdef {Editing Binary Files-snt}{Section'tie30.7} ! 'xrdef {Emacs Server-pg}{279} 'xrdef {Emacs Server-snt}{Section'tie30.8} ! 'xrdef {Recursive Edit-pg}{280} 'xrdef {Recursive Edit-snt}{Section'tie30.9} ! 'xrdef {Dissociated Press-pg}{281} 'xrdef {Dissociated Press-snt}{Section'tie30.10} ! 'xrdef {Amusements-pg}{282} 'xrdef {Amusements-snt}{Section'tie30.11} ! 'xrdef {Emulation-pg}{282} 'xrdef {Emulation-snt}{Section'tie30.12} ! 'xrdef {Customization-pg}{285} 'xrdef {Customization-snt}{Chapter'tie31} ! 'xrdef {Minor Modes-pg}{285} 'xrdef {Minor Modes-snt}{Section'tie31.1} ! 'xrdef {Variables-pg}{286} 'xrdef {Variables-snt}{Section'tie31.2} ! 'xrdef {Examining-pg}{287} 'xrdef {Examining-snt}{Section'tie31.2.1} ! 'xrdef {Edit Options-pg}{288} 'xrdef {Edit Options-snt}{Section'tie31.2.2} ! 'xrdef {Hooks-pg}{288} 'xrdef {Hooks-snt}{Section'tie31.2.3} ! 'xrdef {Locals-pg}{289} 'xrdef {Locals-snt}{Section'tie31.2.4} ! 'xrdef {File Variables-pg}{291} 'xrdef {File Variables-snt}{Section'tie31.2.5} ! 'xrdef {Keyboard Macros-pg}{292} 'xrdef {Keyboard Macros-snt}{Section'tie31.3} ! 'xrdef {Basic Kbd Macro-pg}{293} 'xrdef {Basic Kbd Macro-snt}{Section'tie31.3.1} ! 'xrdef {Save Kbd Macro-pg}{294} 'xrdef {Save Kbd Macro-snt}{Section'tie31.3.2} ! 'xrdef {Kbd Macro Query-pg}{295} 'xrdef {Kbd Macro Query-snt}{Section'tie31.3.3} ! 'xrdef {Key Bindings-pg}{295} 'xrdef {Key Bindings-snt}{Section'tie31.4} ! 'xrdef {Keymaps-pg}{296} 'xrdef {Keymaps-snt}{Section'tie31.4.1} ! 'xrdef {Prefix Keymaps-pg}{297} 'xrdef {Prefix Keymaps-snt}{Section'tie31.4.2} ! 'xrdef {Local Keymaps-pg}{297} 'xrdef {Local Keymaps-snt}{Section'tie31.4.3} ! 'xrdef {Minibuffer Maps-pg}{298} 'xrdef {Minibuffer Maps-snt}{Section'tie31.4.4} ! 'xrdef {Rebinding-pg}{298} 'xrdef {Rebinding-snt}{Section'tie31.4.5} ! 'xrdef {Init Rebinding-pg}{300} 'xrdef {Init Rebinding-snt}{Section'tie31.4.6} ! 'xrdef {Function Keys-pg}{300} 'xrdef {Function Keys-snt}{Section'tie31.4.7} ! 'xrdef {Mouse Buttons-pg}{301} 'xrdef {Mouse Buttons-snt}{Section'tie31.4.8} ! 'xrdef {Disabling-pg}{303} 'xrdef {Disabling-snt}{Section'tie31.4.9} ! 'xrdef {Keyboard Translations-pg}{303} 'xrdef {Keyboard Translations-snt}{Section'tie31.5} ! 'xrdef {Syntax-pg}{304} 'xrdef {Syntax-snt}{Section'tie31.6} ! 'xrdef {Init File-pg}{304} 'xrdef {Init File-snt}{Section'tie31.7} ! 'xrdef {Init Syntax-pg}{305} 'xrdef {Init Syntax-snt}{Section'tie31.7.1} ! 'xrdef {Init Examples-pg}{306} 'xrdef {Init Examples-snt}{Section'tie31.7.2} ! 'xrdef {Terminal Init-pg}{307} 'xrdef {Terminal Init-snt}{Section'tie31.7.3} ! 'xrdef {Find Init-pg}{308} 'xrdef {Find Init-snt}{Section'tie31.7.4} ! 'xrdef {Find Init-pg}{309} 'xrdef {Find Init-snt}{Chapter'tie32} ! 'xrdef {Quitting-pg}{309} 'xrdef {Quitting-snt}{Section'tie32.1} ! 'xrdef {Lossage-pg}{310} 'xrdef {Lossage-snt}{Section'tie32.2} ! 'xrdef {DEL Gets Help-pg}{310} 'xrdef {DEL Gets Help-snt}{Section'tie32.2.1} ! 'xrdef {Stuck Recursive-pg}{310} 'xrdef {Stuck Recursive-snt}{Section'tie32.2.2} ! 'xrdef {Screen Garbled-pg}{311} 'xrdef {Screen Garbled-snt}{Section'tie32.2.3} ! 'xrdef {Text Garbled-pg}{311} 'xrdef {Text Garbled-snt}{Section'tie32.2.4} ! 'xrdef {Unasked-for Search-pg}{311} 'xrdef {Unasked-for Search-snt}{Section'tie32.2.5} ! 'xrdef {Emergency Escape-pg}{312} 'xrdef {Emergency Escape-snt}{Section'tie32.2.6} ! 'xrdef {Total Frustration-pg}{312} 'xrdef {Total Frustration-snt}{Section'tie32.2.7} ! 'xrdef {Bugs-pg}{313} 'xrdef {Bugs-snt}{Section'tie32.3} ! 'xrdef {Bug Criteria-pg}{313} 'xrdef {Bug Criteria-snt}{Section'tie32.3.1} ! 'xrdef {Understanding Bug Reporting-pg}{314} 'xrdef {Understanding Bug Reporting-snt}{Section'tie32.3.2} ! 'xrdef {Checklist-pg}{315} 'xrdef {Checklist-snt}{Section'tie32.3.3} ! 'xrdef {Sending Patches-pg}{319} 'xrdef {Sending Patches-snt}{Section'tie32.3.4} ! 'xrdef {Service-pg}{320} 'xrdef {Service-snt}{Section'tie32.4} ! 'xrdef {Command Arguments-pg}{321} 'xrdef {Command Arguments-snt}{Appendix'tie'char65{}} ! 'xrdef {Ordinary Arguments-pg}{321} 'xrdef {Ordinary Arguments-snt}{Section'tie'char65.1} ! 'xrdef {Initial Options-pg}{322} 'xrdef {Initial Options-snt}{Section'tie'char65.2} ! 'xrdef {Command Example-pg}{322} 'xrdef {Command Example-snt}{Section'tie'char65.3} ! 'xrdef {Resume Arguments-pg}{323} 'xrdef {Resume Arguments-snt}{Section'tie'char65.4} ! 'xrdef {Display X-pg}{323} 'xrdef {Display X-snt}{Section'tie'char65.5} ! 'xrdef {Font X-pg}{324} 'xrdef {Font X-snt}{Section'tie'char65.6} ! 'xrdef {Colors X-pg}{325} 'xrdef {Colors X-snt}{Section'tie'char65.7} ! 'xrdef {Window Size X-pg}{326} 'xrdef {Window Size X-snt}{Section'tie'char65.8} ! 'xrdef {Borders X-pg}{326} 'xrdef {Borders X-snt}{Section'tie'char65.9} ! 'xrdef {Icons X-pg}{327} 'xrdef {Icons X-snt}{Section'tie'char65.10} ! 'xrdef {Resources X-pg}{327} 'xrdef {Resources X-snt}{Section'tie'char65.11} ! 'xrdef {Antinews-pg}{331} 'xrdef {Antinews-snt}{Appendix'tie'char66{}} 'xrdef {Manifesto-pg}{339} 'xrdef {Manifesto-snt}{} 'xrdef {Manifesto-pg}{339} 'xrdef {Manifesto-snt}{} ! 'xrdef {Manifesto-pg}{340} 'xrdef {Manifesto-snt}{} 'xrdef {Manifesto-pg}{340} 'xrdef {Manifesto-snt}{} 'xrdef {Manifesto-pg}{341} 'xrdef {Manifesto-snt}{} ! 'xrdef {Manifesto-pg}{341} ! 'xrdef {Manifesto-snt}{} ! 'xrdef {Manifesto-pg}{341} ! 'xrdef {Manifesto-snt}{} ! 'xrdef {Manifesto-pg}{342} ! 'xrdef {Manifesto-snt}{} ! 'xrdef {Manifesto-pg}{343} ! 'xrdef {Manifesto-snt}{} ! 'xrdef {Glossary-pg}{349} 'xrdef {Glossary-snt}{} ! 'xrdef {Key Index-pg}{367} 'xrdef {Key Index-snt}{} ! 'xrdef {Command Index-pg}{375} 'xrdef {Command Index-snt}{} ! 'xrdef {Variable Index-pg}{385} 'xrdef {Variable Index-snt}{} ! 'xrdef {Concept Index-pg}{389} 'xrdef {Concept Index-snt}{} diff -cprP --exclude=*.elc emacs-19.14/man/emacs.cps emacs-19.15/man/emacs.cps *** emacs-19.14/man/emacs.cps Wed Jun 9 11:02:40 1993 --- emacs-19.15/man/emacs.cps Fri Jun 18 15:46:29 1993 *************** *** 4,17 **** \entry {A and B buffers (Emerge)}{180} \entry {Abbrev mode}{205} \entry {abbrevs}{205} ! \entry {aborting recursive edit}{308} \entry {accented characters}{71} ! \entry {accessible portion}{274} ! \entry {againformation}{279} \entry {alarm clock}{263} \entry {appointment notification}{263} \entry {apropos}{47} ! \entry {arguments (from shell)}{319} \entry {arguments, numeric}{31} \entry {arguments, prefix}{31} \entry {arrow keys}{26} --- 4,17 ---- \entry {A and B buffers (Emerge)}{180} \entry {Abbrev mode}{205} \entry {abbrevs}{205} ! \entry {aborting recursive edit}{310} \entry {accented characters}{71} ! \entry {accessible portion}{276} ! \entry {againformation}{281} \entry {alarm clock}{263} \entry {appointment notification}{263} \entry {apropos}{47} ! \entry {arguments (from shell)}{321} \entry {arguments, numeric}{31} \entry {arguments, prefix}{31} \entry {arrow keys}{26} *************** *** 26,52 **** \entry {autoload}{201} \entry {Awk mode}{159} \initial {B} ! \entry {backtrace for bug reports}{315} \entry {backup file}{99} ! \entry {batch mode}{320} \entry {binding}{21} \entry {blank lines}{29, 171} \entry {body lines (Outline mode)}{148} \entry {bold font}{130} ! \entry {borders (X Windows)}{324} ! \entry {boredom}{280} \entry {buffer menu}{120} \entry {buffers}{117} ! \entry {buggestion}{280} ! \entry {bugs}{311} \entry {building programs}{195} ! \entry {button down events}{299} \entry {byte code}{202} \initial {C} \entry {C editing}{159} \entry {C mode}{185} \entry {C-}{19} ! \entry {C-g}{307} \entry {C{\tt\char43}{\tt\char43} mode}{159} \entry {calendar}{247} \entry {case conversion}{90, 147} --- 26,52 ---- \entry {autoload}{201} \entry {Awk mode}{159} \initial {B} ! \entry {backtrace for bug reports}{317} \entry {backup file}{99} ! \entry {batch mode}{322} \entry {binding}{21} \entry {blank lines}{29, 171} \entry {body lines (Outline mode)}{148} \entry {bold font}{130} ! \entry {borders (X Windows)}{326} ! \entry {boredom}{282} \entry {buffer menu}{120} \entry {buffers}{117} ! \entry {buggestion}{282} ! \entry {bugs}{313} \entry {building programs}{195} ! \entry {button down events}{301} \entry {byte code}{202} \initial {C} \entry {C editing}{159} \entry {C mode}{185} \entry {C-}{19} ! \entry {C-g}{309} \entry {C{\tt\char43}{\tt\char43} mode}{159} \entry {calendar}{247} \entry {case conversion}{90, 147} *************** *** 58,74 **** \entry {characters (in text)}{22} \entry {checking in files}{106} \entry {checking out files}{106} ! \entry {click events}{299} \entry {collision}{101} ! \entry {color of window (X Windows)}{323} \entry {colors}{128} \entry {colors and faces}{131} \entry {columns (and rectangles)}{63} \entry {columns (indentation)}{135} ! \entry {columns, splitting}{275} \entry {command}{21} \entry {command history}{40} ! \entry {command line arguments}{319} \entry {comments}{169} \entry {comparing files}{115} \entry {compilation errors}{195} --- 58,74 ---- \entry {characters (in text)}{22} \entry {checking in files}{106} \entry {checking out files}{106} ! \entry {click events}{301} \entry {collision}{101} ! \entry {color of window (X Windows)}{325} \entry {colors}{128} \entry {colors and faces}{131} \entry {columns (and rectangles)}{63} \entry {columns (indentation)}{135} ! \entry {columns, splitting}{277} \entry {command}{21} \entry {command history}{40} ! \entry {command line arguments}{321} \entry {comments}{169} \entry {comparing files}{115} \entry {compilation errors}{195} *************** *** 87,93 **** \entry {creating frames}{128} \entry {current buffer}{117} \entry {cursor}{15} ! \entry {customization}{21, 165, 283} \entry {cutting}{57} \entry {cutting and X}{127} \initial {D} --- 87,93 ---- \entry {creating frames}{128} \entry {current buffer}{117} \entry {cursor}{15} ! \entry {customization}{21, 165, 285} \entry {cutting}{57} \entry {cutting and X}{127} \initial {D} *************** *** 100,106 **** \entry {deletion}{57} \entry {deletion (of files)}{116} \entry {deletion (Rmail)}{223} ! \entry {developediment}{280} \entry {diary}{257} \entry {diary file}{258} \entry {digest message}{234} --- 100,106 ---- \entry {deletion}{57} \entry {deletion (of files)}{116} \entry {deletion (Rmail)}{223} ! \entry {developediment}{282} \entry {diary}{257} \entry {diary file}{258} \entry {digest message}{234} *************** *** 107,143 **** \entry {directory header lines}{243} \entry {directory listing}{114} \entry {Dired}{235} ! \entry {disabled command}{301} ! \entry {\code {DISPLAY} environment variable}{321} ! \entry {display name (X Windows)}{321} \entry {display table}{22} ! \entry {doctor}{310} ! \entry {down events}{299} ! \entry {drag events}{299} \entry {drastic changes}{102} ! \entry {dribble file}{314} \initial {E} \entry {echo area}{16} ! \entry {editing binary files}{276} ! \entry {editing level, recursive}{278} ! \entry {\code {EDITOR} environment variable}{277} ! \entry {EDT}{280} ! \entry {Eliza}{310} ! \entry {Emacs as a server}{277} ! \entry {Emacs initialization file}{302} \entry {Emacs-Lisp mode}{202} \entry {Emerge}{180} \entry {entering Emacs}{23} ! \entry {environment}{270} \entry {error log}{195} \entry {ESC replacing META key}{19} ! \entry {\code {ESHELL} environment variable}{271} \entry {\code {etags} program}{175} \entry {European character set}{71} \entry {exiting}{23} ! \entry {exiting recursive edit}{278} \entry {expanding subdirectories in Dired}{242} \entry {expansion (of abbrevs)}{205} \entry {expression}{160} \entry {expunging (Rmail)}{223} \initial {F} --- 107,144 ---- \entry {directory header lines}{243} \entry {directory listing}{114} \entry {Dired}{235} ! \entry {disabled command}{303} ! \entry {\code {DISPLAY} environment variable}{323} ! \entry {display name (X Windows)}{323} \entry {display table}{22} ! \entry {doctor}{312} ! \entry {down events}{301} ! \entry {drag events}{301} \entry {drastic changes}{102} ! \entry {dribble file}{316} \initial {E} \entry {echo area}{16} ! \entry {editing binary files}{278} ! \entry {editing level, recursive}{280} ! \entry {\code {EDITOR} environment variable}{279} ! \entry {EDT}{282} ! \entry {Eliza}{312} ! \entry {Emacs as a server}{279} ! \entry {Emacs initialization file}{304} \entry {Emacs-Lisp mode}{202} \entry {Emerge}{180} \entry {entering Emacs}{23} ! \entry {environment}{272} \entry {error log}{195} \entry {ESC replacing META key}{19} ! \entry {\code {ESHELL} environment variable}{273} \entry {\code {etags} program}{175} \entry {European character set}{71} \entry {exiting}{23} ! \entry {exiting recursive edit}{280} \entry {expanding subdirectories in Dired}{242} \entry {expansion (of abbrevs)}{205} + \entry {expansion of C macros}{186} \entry {expression}{160} \entry {expunging (Rmail)}{223} \initial {F} *************** *** 151,158 **** \entry {filling}{143} \entry {\code {find} and Dired}{244} \entry {flagging files (in Dired)}{235} ! \entry {flow control}{309} ! \entry {font name (X Windows)}{322} \entry {fonts and faces}{130} \entry {formfeed}{142} \entry {Fortran continuation lines}{188} --- 152,159 ---- \entry {filling}{143} \entry {\code {find} and Dired}{244} \entry {flagging files (in Dired)}{235} ! \entry {flow control}{311} ! \entry {font name (X Windows)}{324} \entry {fonts and faces}{130} \entry {formfeed}{142} \entry {Fortran continuation lines}{188} *************** *** 162,179 **** \entry {French Revolutionary calendar}{254} \entry {ftp}{94} \entry {function}{21} ! \entry {function key}{294} \initial {G} \entry {GDB}{197} ! \entry {geometry (X Windows)}{324} ! \entry {global keymap}{294} \entry {global substitution}{84} ! \entry {{\smallcaps gnus}}{265} ! \entry {Go Moku}{280} \entry {graphic characters}{25} \entry {Gregorian calendar}{253} \initial {H} ! \entry {hardcopy}{275} \entry {header (\TeX{} mode)}{155} \entry {header line (Dired)}{243} \entry {headers (of mail message)}{216} --- 163,180 ---- \entry {French Revolutionary calendar}{254} \entry {ftp}{94} \entry {function}{21} ! \entry {function key}{296} \initial {G} \entry {GDB}{197} ! \entry {geometry (X Windows)}{326} ! \entry {global keymap}{296} \entry {global substitution}{84} ! \entry {{\smallcaps gnus}}{267} ! \entry {Go Moku}{282} \entry {graphic characters}{25} \entry {Gregorian calendar}{253} \initial {H} ! \entry {hardcopy}{277} \entry {header (\TeX{} mode)}{155} \entry {header line (Dired)}{243} \entry {headers (of mail message)}{216} *************** *** 180,196 **** \entry {heading lines (Outline mode)}{148} \entry {Hebrew calendar}{254} \entry {help}{45} ! \entry {Hexl mode}{276} \entry {hiding in Dired (Dired)}{243} \entry {history of commands}{40} \entry {history of minibuffer input}{39} \entry {holidays}{250} ! \entry {hook}{286} \entry {horizontal scrolling}{70} \initial {I} \entry {Icon mode}{159} ! \entry {icons (X Windows)}{325} ! \entry {ignoriginal}{280} \entry {in-situ subdirectory (Dired)}{242} \entry {inbox file}{224} \entry {indentation}{135, 163, 169} --- 181,197 ---- \entry {heading lines (Outline mode)}{148} \entry {Hebrew calendar}{254} \entry {help}{45} ! \entry {Hexl mode}{278} \entry {hiding in Dired (Dired)}{243} \entry {history of commands}{40} \entry {history of minibuffer input}{39} \entry {holidays}{250} ! \entry {hook}{288} \entry {horizontal scrolling}{70} \initial {I} \entry {Icon mode}{159} ! \entry {icons (X Windows)}{327} ! \entry {ignoriginal}{282} \entry {in-situ subdirectory (Dired)}{242} \entry {inbox file}{224} \entry {indentation}{135, 163, 169} *************** *** 197,203 **** \entry {Indented Text mode}{148} \entry {inferior process}{195} \entry {Info}{49} ! \entry {init file}{302} \entry {input event}{19, 20} \entry {inserted subdirectory (Dired)}{242} \entry {insertion}{25} --- 198,204 ---- \entry {Indented Text mode}{148} \entry {inferior process}{195} \entry {Info}{49} ! \entry {init file}{304} \entry {input event}{19, 20} \entry {inserted subdirectory (Dired)}{242} \entry {insertion}{25} *************** *** 215,228 **** \entry {Julian day numbers}{253} \entry {justification}{145} \initial {K} ! \entry {key bindings}{293} ! \entry {key rebinding, permanent}{302} ! \entry {key rebinding, this session}{296} \entry {key sequence}{20} \entry {keyboard input}{19} ! \entry {keyboard macro}{290} ! \entry {keyboard translations}{301} ! \entry {keymap}{21, 294} \entry {kill ring}{59} \entry {killing}{57} \entry {killing Emacs}{23} --- 216,229 ---- \entry {Julian day numbers}{253} \entry {justification}{145} \initial {K} ! \entry {key bindings}{295} ! \entry {key rebinding, permanent}{304} ! \entry {key rebinding, this session}{298} \entry {key sequence}{20} \entry {keyboard input}{19} ! \entry {keyboard macro}{292} ! \entry {keyboard translations}{303} ! \entry {keymap}{21, 296} \entry {kill ring}{59} \entry {killing}{57} \entry {killing Emacs}{23} *************** *** 235,252 **** \entry {line wrapping}{29} \entry {Lisp editing}{159} \entry {Lisp mode}{159} ! \entry {Lisp string syntax}{303} \entry {Lisp symbol completion}{173} \entry {list}{160} \entry {loading Lisp code}{201} ! \entry {local keymap}{295} ! \entry {local variables}{288} ! \entry {local variables in files}{289} \entry {locking and version control}{106} \entry {locking files}{101} \entry {log entry}{107} \initial {M} \entry {M-}{19} \entry {mail}{215} \entry {mail (on mode line)}{72} \entry {mail aliases}{217} --- 236,254 ---- \entry {line wrapping}{29} \entry {Lisp editing}{159} \entry {Lisp mode}{159} ! \entry {Lisp string syntax}{305} \entry {Lisp symbol completion}{173} \entry {list}{160} \entry {loading Lisp code}{201} ! \entry {local keymap}{297} ! \entry {local variables}{290} ! \entry {local variables in files}{291} \entry {locking and version control}{106} \entry {locking files}{101} \entry {log entry}{107} \initial {M} \entry {M-}{19} + \entry {macro expansion in C}{186} \entry {mail}{215} \entry {mail (on mode line)}{72} \entry {mail aliases}{217} *************** *** 258,264 **** \entry {mark}{51} \entry {mark ring}{54} \entry {marking in Dired}{238} ! \entry {Markov chain}{280} \entry {master file}{106} \entry {matching parentheses}{169} \entry {Mayan calendar}{254} --- 260,266 ---- \entry {mark}{51} \entry {mark ring}{54} \entry {marking in Dired}{238} ! \entry {Markov chain}{282} \entry {master file}{106} \entry {matching parentheses}{169} \entry {Mayan calendar}{254} *************** *** 275,283 **** \entry {Meta commands and words}{139} \entry {minibuffer}{35} \entry {minibuffer history}{39} ! \entry {minibuffer keymaps}{296} ! \entry {minor mode keymap}{295} ! \entry {minor modes}{283} \entry {mistakes, correcting}{33, 89} \entry {mode hook}{160} \entry {mode line}{17} --- 277,285 ---- \entry {Meta commands and words}{139} \entry {minibuffer}{35} \entry {minibuffer history}{39} ! \entry {minibuffer keymaps}{298} ! \entry {minor mode keymap}{297} ! \entry {minor modes}{285} \entry {mistakes, correcting}{33, 89} \entry {mode hook}{160} \entry {mode line}{17} *************** *** 291,316 **** \entry {mode, Line Number}{72} \entry {mode, major}{133} \entry {mode, Menu Bar}{130} ! \entry {mode, minor}{283} \entry {mode, Outline}{148} ! \entry {mode, Overwrite}{283} \entry {mode, Scroll Bar}{129} ! \entry {mode, Shell}{272} \entry {mode, Text}{147} \entry {mode, Transient Mark}{52} \entry {modified (buffer)}{95} \entry {moon, phases of}{253} ! \entry {mouse}{294} ! \entry {mouse button events}{299} \entry {mouse buttons (what they do)}{127} \entry {moving text}{59} \entry {Muddle mode}{159} ! \entry {mustatement}{280} \initial {N} \entry {named configurations (RCS)}{113} ! \entry {narrowing}{274} \entry {newline}{25} ! \entry {NFS and quitting}{307} \entry {nonincremental search}{77} \entry {nroff}{157} \entry {NSA}{220} --- 293,318 ---- \entry {mode, Line Number}{72} \entry {mode, major}{133} \entry {mode, Menu Bar}{130} ! \entry {mode, minor}{285} \entry {mode, Outline}{148} ! \entry {mode, Overwrite}{285} \entry {mode, Scroll Bar}{129} ! \entry {mode, Shell}{274} \entry {mode, Text}{147} \entry {mode, Transient Mark}{52} \entry {modified (buffer)}{95} \entry {moon, phases of}{253} ! \entry {mouse}{296} ! \entry {mouse button events}{301} \entry {mouse buttons (what they do)}{127} \entry {moving text}{59} \entry {Muddle mode}{159} ! \entry {mustatement}{282} \initial {N} \entry {named configurations (RCS)}{113} ! \entry {narrowing}{276} \entry {newline}{25} ! \entry {NFS and quitting}{309} \entry {nonincremental search}{77} \entry {nroff}{157} \entry {NSA}{220} *************** *** 318,328 **** \initial {O} \entry {on-line manuals}{49} \entry {operating on files in Dired}{239} ! \entry {option}{284} ! \entry {other editors}{280} \entry {Outline mode}{148} ! \entry {outragedy}{280} ! \entry {Overwrite mode}{283} \initial {P} \entry {pages}{142} \entry {paragraphs}{141} --- 320,330 ---- \initial {O} \entry {on-line manuals}{49} \entry {operating on files in Dired}{239} ! \entry {option}{286} ! \entry {other editors}{282} \entry {Outline mode}{148} ! \entry {outragedy}{282} ! \entry {Overwrite mode}{285} \initial {P} \entry {pages}{142} \entry {paragraphs}{141} *************** *** 329,335 **** \entry {parentheses}{169} \entry {pasting}{59} \entry {pasting and X}{127} ! \entry {per-buffer variables}{288} \entry {Perl mode}{159} \entry {phases of the moon}{253} \entry {pictures}{211} --- 331,337 ---- \entry {parentheses}{169} \entry {pasting}{59} \entry {pasting and X}{127} ! \entry {per-buffer variables}{290} \entry {Perl mode}{159} \entry {phases of the moon}{253} \entry {pictures}{211} *************** *** 336,351 **** \entry {point}{15} \entry {prefix arguments}{31} \entry {prefix key}{20} ! \entry {presidentagon}{279} \entry {primary mail file}{221} \entry {program building}{195} \entry {program editing}{159} \entry {prompt}{35} ! \entry {properbose}{280} ! \entry {puzzles}{280} \initial {Q} \entry {query replace}{86} ! \entry {quitting}{307} \entry {quitting (in search)}{76} \entry {quoting}{25} \initial {R} --- 338,353 ---- \entry {point}{15} \entry {prefix arguments}{31} \entry {prefix key}{20} ! \entry {presidentagon}{281} \entry {primary mail file}{221} \entry {program building}{195} \entry {program editing}{159} \entry {prompt}{35} ! \entry {properbose}{282} ! \entry {puzzles}{282} \initial {Q} \entry {query replace}{86} ! \entry {quitting}{309} \entry {quitting (in search)}{76} \entry {quoting}{25} \initial {R} *************** *** 352,363 **** \entry {RCS}{106} \entry {read-only buffer}{119} \entry {reading mail}{221} ! \entry {reading netnews}{265} ! \entry {rebinding keys, permanently}{302} ! \entry {rebinding keys, this session}{296} \entry {rectangle}{63} \entry {rectangles and Picture mode}{213} ! \entry {recursive editing level}{278} \entry {regexp}{79} \entry {regexp syntax}{79} \entry {region}{51} --- 354,365 ---- \entry {RCS}{106} \entry {read-only buffer}{119} \entry {reading mail}{221} ! \entry {reading netnews}{267} ! \entry {rebinding keys, permanently}{304} ! \entry {rebinding keys, this session}{298} \entry {rectangle}{63} \entry {rectangles and Picture mode}{213} ! \entry {recursive editing level}{280} \entry {regexp}{79} \entry {regexp syntax}{79} \entry {region}{51} *************** *** 369,375 **** \entry {remote file access}{94} \entry {replacement}{84} \entry {reply to a message}{229} ! \entry {restriction}{274} \entry {Rmail}{221} \entry {rot13 code}{234} \entry {running Lisp functions}{195} --- 371,377 ---- \entry {remote file access}{94} \entry {replacement}{84} \entry {reply to a message}{229} ! \entry {restriction}{276} \entry {Rmail}{221} \entry {rot13 code}{234} \entry {running Lisp functions}{195} *************** *** 387,423 **** \entry {selective display}{148} \entry {self-documentation}{45} \entry {sentences}{140} ! \entry {server (using Emacs as)}{277} ! \entry {setting variables}{285} \entry {sexp}{160} ! \entry {shell commands}{270} \entry {shell commands, Dired}{240} ! \entry {\code {SHELL} environment variable}{271} ! \entry {Shell mode}{272} \entry {simultaneous editing}{101} \entry {Sli\TeX{} mode}{152} \entry {snapshots and version control}{112} ! \entry {sorting}{267} \entry {spelling}{90} ! \entry {splitting columns}{275} \entry {string substitution}{84} ! \entry {string syntax}{303} \entry {subdirectories in Dired}{242} ! \entry {subscribe newsgroups}{266} ! \entry {subshell}{270} \entry {subtree (Outline mode)}{151} \entry {summary (Rmail)}{231} \entry {sunrise and sunset}{251} \entry {suspending}{23} \entry {switch buffers}{117} ! \entry {syntax table}{302} \initial {T} \entry {tag table}{174} \entry {tags completion}{173} ! \entry {techniquitous}{280} \entry {television}{60} ! \entry {\code {TERM} environment variable}{314} ! \entry {termscript file}{314} \entry {\TeX{} mode}{152} \entry {\code {TEXINPUTS} environment variable}{155} \entry {text}{139} --- 389,425 ---- \entry {selective display}{148} \entry {self-documentation}{45} \entry {sentences}{140} ! \entry {server (using Emacs as)}{279} ! \entry {setting variables}{287} \entry {sexp}{160} ! \entry {shell commands}{272} \entry {shell commands, Dired}{240} ! \entry {\code {SHELL} environment variable}{273} ! \entry {Shell mode}{274} \entry {simultaneous editing}{101} \entry {Sli\TeX{} mode}{152} \entry {snapshots and version control}{112} ! \entry {sorting}{269} \entry {spelling}{90} ! \entry {splitting columns}{277} \entry {string substitution}{84} ! \entry {string syntax}{305} \entry {subdirectories in Dired}{242} ! \entry {subscribe newsgroups}{268} ! \entry {subshell}{272} \entry {subtree (Outline mode)}{151} \entry {summary (Rmail)}{231} \entry {sunrise and sunset}{251} \entry {suspending}{23} \entry {switch buffers}{117} ! \entry {syntax table}{304} \initial {T} \entry {tag table}{174} \entry {tags completion}{173} ! \entry {techniquitous}{282} \entry {television}{60} ! \entry {\code {TERM} environment variable}{316} ! \entry {termscript file}{316} \entry {\TeX{} mode}{152} \entry {\code {TEXINPUTS} environment variable}{155} \entry {text}{139} *************** *** 424,436 **** \entry {Text mode}{147} \entry {time (on mode line)}{72} \entry {top level}{17} ! \entry {touch}{294} ! \entry {tower of Hanoi}{280} \entry {Transient Mark mode}{52} \entry {transposition}{89, 162} \entry {truenames of files}{105} \entry {truncation}{29} ! \entry {two-column editing}{275} \entry {typos}{89} \initial {U} \entry {undeletion (Rmail)}{224} --- 426,438 ---- \entry {Text mode}{147} \entry {time (on mode line)}{72} \entry {top level}{17} ! \entry {touch}{296} ! \entry {tower of Hanoi}{282} \entry {Transient Mark mode}{52} \entry {transposition}{89, 162} \entry {truenames of files}{105} \entry {truncation}{29} ! \entry {two-column editing}{277} \entry {typos}{89} \initial {U} \entry {undeletion (Rmail)}{224} *************** *** 437,455 **** \entry {underlining and faces}{131} \entry {undigestify}{234} \entry {undo}{33} ! \entry {unsubscribe newsgroups}{266} ! \entry {userenced}{280} \initial {V} ! \entry {variable}{284} \entry {version control}{105} \entry {\code {VERSION{\_}CONTROL} environment variable}{100} ! \entry {vi}{280} \entry {View mode}{115} \entry {viewing}{115} \entry {visiting}{95} \entry {visiting files}{94} \initial {W} ! \entry {widening}{274} \entry {windows}{123} \entry {word search}{78} \entry {words}{90, 139, 147} --- 439,457 ---- \entry {underlining and faces}{131} \entry {undigestify}{234} \entry {undo}{33} ! \entry {unsubscribe newsgroups}{268} ! \entry {userenced}{282} \initial {V} ! \entry {variable}{286} \entry {version control}{105} \entry {\code {VERSION{\_}CONTROL} environment variable}{100} ! \entry {vi}{282} \entry {View mode}{115} \entry {viewing}{115} \entry {visiting}{95} \entry {visiting files}{94} \initial {W} ! \entry {widening}{276} \entry {windows}{123} \entry {word search}{78} \entry {words}{90, 139, 147} *************** *** 458,466 **** \initial {X} \entry {X cutting and pasting}{127} \entry {X pasting and cutting}{127} ! \entry {xon-xoff}{309} \initial {Y} \entry {yahrzeits}{255} \entry {yanking}{59} \initial {Z} ! \entry {Zippy}{280} --- 460,468 ---- \initial {X} \entry {X cutting and pasting}{127} \entry {X pasting and cutting}{127} ! \entry {xon-xoff}{311} \initial {Y} \entry {yahrzeits}{255} \entry {yanking}{59} \initial {Z} ! \entry {Zippy}{282} diff -cprP --exclude=*.elc emacs-19.14/man/emacs.fns emacs-19.15/man/emacs.fns *** emacs-19.14/man/emacs.fns Wed Jun 9 11:02:41 1993 --- emacs-19.15/man/emacs.fns Fri Jun 18 15:46:34 1993 *************** *** 1,7 **** \initial {A} \entry {\code {abbrev-mode}}{205} \entry {\code {abbrev-prefix-mark}}{207} ! \entry {\code {abort-recursive-edit}}{308} \entry {\code {add-change-log-entry-other-window}}{174} \entry {\code {add-global-abbrev}}{206} \entry {\code {add-mode-abbrev}}{206} --- 1,7 ---- \initial {A} \entry {\code {abbrev-mode}}{205} \entry {\code {abbrev-prefix-mark}}{207} ! \entry {\code {abort-recursive-edit}}{310} \entry {\code {add-change-log-entry-other-window}}{174} \entry {\code {add-global-abbrev}}{206} \entry {\code {add-mode-abbrev}}{206} *************** *** 37,43 **** \entry {\code {beginning-of-defun}}{162} \entry {\code {beginning-of-fortran-subprogram}}{187} \entry {\code {beginning-of-line}}{26} ! \entry {\code {blackbox}}{280} \entry {\code {buffer-menu}}{120} \initial {C} \entry {\code {c-backslash-region}}{186} --- 37,43 ---- \entry {\code {beginning-of-defun}}{162} \entry {\code {beginning-of-fortran-subprogram}}{187} \entry {\code {beginning-of-line}}{26} ! \entry {\code {blackbox}}{282} \entry {\code {buffer-menu}}{120} \initial {C} \entry {\code {c-backslash-region}}{186} *************** *** 45,50 **** --- 45,51 ---- \entry {\code {c-end-of-statement}}{185} \entry {\code {c-fill-paragraph}}{186} \entry {\code {c-indent-line}}{163} + \entry {\code {c-macro-expand}}{186} \entry {\code {c-up-conditional}}{186} \entry {\code {calendar}}{247} \entry {\code {calendar-backward-day}}{247} *************** *** 88,114 **** \entry {\code {calendar-print-mayan-date}}{254} \entry {\code {calendar-sunrise-sunset}}{252} \entry {\code {calendar-unmark}}{251} ! \entry {\code {call-last-kbd-macro}}{291} \entry {\code {capitalize-word}}{90, 147} \entry {\code {center-line}}{144} \entry {\code {change-log-mode}}{174} \entry {\code {clear-rectangle}}{65} ! \entry {\code {comint-bol}}{272} ! \entry {\code {comint-continue-subjob}}{273} ! \entry {\code {comint-delchar-or-maybe-eof}}{272} ! \entry {\code {comint-dynamic-complete}}{272} ! \entry {\code {comint-dynamic-list-completions}}{272} ! \entry {\code {comint-interrupt-subjob}}{272} ! \entry {\code {comint-kill-input}}{272} ! \entry {\code {comint-kill-output}}{272} ! \entry {\code {comint-next-input}}{273} ! \entry {\code {comint-next-matching-input}}{273} ! \entry {\code {comint-previous-input}}{273} ! \entry {\code {comint-previous-matching-input}}{273} ! \entry {\code {comint-quit-subjob}}{272} ! \entry {\code {comint-send-input}}{272} ! \entry {\code {comint-show-output}}{272} ! \entry {\code {comint-stop-subjob}}{272} \entry {\code {command-apropos}}{47} \entry {\code {comment-region}}{170} \entry {\code {compare-windows}}{115} --- 89,115 ---- \entry {\code {calendar-print-mayan-date}}{254} \entry {\code {calendar-sunrise-sunset}}{252} \entry {\code {calendar-unmark}}{251} ! \entry {\code {call-last-kbd-macro}}{293} \entry {\code {capitalize-word}}{90, 147} \entry {\code {center-line}}{144} \entry {\code {change-log-mode}}{174} \entry {\code {clear-rectangle}}{65} ! \entry {\code {comint-bol}}{274} ! \entry {\code {comint-continue-subjob}}{275} ! \entry {\code {comint-delchar-or-maybe-eof}}{274} ! \entry {\code {comint-dynamic-complete}}{274} ! \entry {\code {comint-dynamic-list-completions}}{274} ! \entry {\code {comint-interrupt-subjob}}{274} ! \entry {\code {comint-kill-input}}{274} ! \entry {\code {comint-kill-output}}{274} ! \entry {\code {comint-next-input}}{275} ! \entry {\code {comint-next-matching-input}}{275} ! \entry {\code {comint-previous-input}}{275} ! \entry {\code {comint-previous-matching-input}}{275} ! \entry {\code {comint-quit-subjob}}{274} ! \entry {\code {comint-send-input}}{274} ! \entry {\code {comint-show-output}}{274} ! \entry {\code {comint-stop-subjob}}{274} \entry {\code {command-apropos}}{47} \entry {\code {comment-region}}{170} \entry {\code {compare-windows}}{115} *************** *** 125,134 **** \initial {D} \entry {\code {dabbrev-expand}}{209} \entry {\code {dbx}}{197} ! \entry {\code {debug{\_}print}}{315} ! \entry {\code {default-value}}{288} \entry {\code {define-abbrevs}}{209} ! \entry {\code {define-key}}{298} \entry {\code {define-mail-alias}}{218} \entry {\code {delete-backward-char}}{25, 57, 89} \entry {\code {delete-blank-lines}}{29} --- 126,135 ---- \initial {D} \entry {\code {dabbrev-expand}}{209} \entry {\code {dbx}}{197} ! \entry {\code {debug{\_}print}}{318} ! \entry {\code {default-value}}{290} \entry {\code {define-abbrevs}}{209} ! \entry {\code {define-key}}{300} \entry {\code {define-mail-alias}}{218} \entry {\code {delete-backward-char}}{25, 57, 89} \entry {\code {delete-blank-lines}}{29} *************** *** 150,156 **** \entry {\code {describe-key-briefly}}{46} \entry {\code {describe-mode}}{49} \entry {\code {describe-no-warranty}}{50} ! \entry {\code {describe-syntax}}{302} \entry {\code {diary}}{258} \entry {\code {diary-anniversary}}{262} \entry {\code {diary-block}}{262} --- 151,157 ---- \entry {\code {describe-key-briefly}}{46} \entry {\code {describe-mode}}{49} \entry {\code {describe-no-warranty}}{50} ! \entry {\code {describe-syntax}}{304} \entry {\code {diary}}{258} \entry {\code {diary-anniversary}}{262} \entry {\code {diary-block}}{262} *************** *** 206,217 **** \entry {\code {dired-unmark-all-files}}{238} \entry {\code {dired-upcase}}{241} \entry {\code {dired-view-file}}{237} ! \entry {\code {dirs}}{271, 273} ! \entry {\code {disable-command}}{301} \entry {\code {display-time}}{72} ! \entry {\code {dissociated-press}}{279} \entry {\code {do-auto-save}}{104} ! \entry {\code {doctor}}{310} \entry {\code {down-list}}{161} \entry {\code {downcase-region}}{147} \entry {\code {downcase-word}}{90, 147} --- 207,218 ---- \entry {\code {dired-unmark-all-files}}{238} \entry {\code {dired-upcase}}{241} \entry {\code {dired-view-file}}{237} ! \entry {\code {dirs}}{273, 275} ! \entry {\code {disable-command}}{303} \entry {\code {display-time}}{72} ! \entry {\code {dissociated-press}}{281} \entry {\code {do-auto-save}}{104} ! \entry {\code {doctor}}{312} \entry {\code {down-list}}{161} \entry {\code {downcase-region}}{147} \entry {\code {downcase-word}}{90, 147} *************** *** 218,232 **** \initial {E} \entry {\code {edit-abbrevs}}{208} \entry {\code {edit-abbrevs-redefine}}{208} ! \entry {\code {edit-options}}{286} \entry {\code {edit-picture}}{211} \entry {\code {edit-tab-stops}}{137} \entry {\code {edit-tab-stops-note-changes}}{137} ! \entry {\code {edt-emulation-off}}{280} ! \entry {\code {edt-emulation-on}}{280} \entry {\code {electric-nroff-mode}}{157} \entry {\code {emacs-lisp-mode}}{202} ! \entry {\code {emacs-version}}{312} \entry {\code {emerge-auto-advance-mode}}{182} \entry {\code {emerge-buffers}}{180} \entry {\code {emerge-buffers-with-ancestor}}{180} --- 219,233 ---- \initial {E} \entry {\code {edit-abbrevs}}{208} \entry {\code {edit-abbrevs-redefine}}{208} ! \entry {\code {edit-options}}{288} \entry {\code {edit-picture}}{211} \entry {\code {edit-tab-stops}}{137} \entry {\code {edit-tab-stops-note-changes}}{137} ! \entry {\code {edt-emulation-off}}{282} ! \entry {\code {edt-emulation-on}}{282} \entry {\code {electric-nroff-mode}}{157} \entry {\code {emacs-lisp-mode}}{202} ! \entry {\code {emacs-version}}{314} \entry {\code {emerge-auto-advance-mode}}{182} \entry {\code {emerge-buffers}}{180} \entry {\code {emerge-buffers-with-ancestor}}{180} *************** *** 233,244 **** \entry {\code {emerge-files}}{180} \entry {\code {emerge-files-with-ancestor}}{180} \entry {\code {emerge-skip-prefers-mode}}{182} ! \entry {\code {enable-command}}{301} ! \entry {\code {enable-flow-control}}{309} ! \entry {\code {enable-flow-control-on}}{309, 310} ! \entry {\code {enable-local-eval}}{290} ! \entry {\code {enable-local-variables}}{290} ! \entry {\code {end-kbd-macro}}{291} \entry {\code {end-of-buffer}}{26} \entry {\code {end-of-defun}}{162} \entry {\code {end-of-fortran-subprogram}}{187} --- 234,245 ---- \entry {\code {emerge-files}}{180} \entry {\code {emerge-files-with-ancestor}}{180} \entry {\code {emerge-skip-prefers-mode}}{182} ! \entry {\code {enable-command}}{303} ! \entry {\code {enable-flow-control}}{311} ! \entry {\code {enable-flow-control-on}}{311, 312} ! \entry {\code {enable-local-eval}}{292} ! \entry {\code {enable-local-variables}}{292} ! \entry {\code {end-kbd-macro}}{293} \entry {\code {end-of-buffer}}{26} \entry {\code {end-of-defun}}{162} \entry {\code {end-of-fortran-subprogram}}{187} *************** *** 254,260 **** \entry {\code {exchange-point-and-mark}}{51} \entry {\code {execute-extended-command}}{43} \entry {\code {exit-calendar}}{250} ! \entry {\code {exit-recursive-edit}}{278} \entry {\code {expand-abbrev}}{206} \entry {\code {expand-region-abbrevs}}{207} \initial {F} --- 255,261 ---- \entry {\code {exchange-point-and-mark}}{51} \entry {\code {execute-extended-command}}{43} \entry {\code {exit-calendar}}{250} ! \entry {\code {exit-recursive-edit}}{280} \entry {\code {expand-abbrev}}{206} \entry {\code {expand-region-abbrevs}}{207} \initial {F} *************** *** 277,288 **** \entry {\code {find-tag-regexp}}{178} \entry {\code {finder-by-keyword}}{48} \entry {\code {fortran-auto-fill-mode}}{192} ! \entry {\code {fortran-column-ruler}}{192} ! \entry {\code {fortran-comment-region}}{191} ! \entry {\code {fortran-indent-line}}{187} ! \entry {\code {fortran-indent-new-line}}{187} \entry {\code {fortran-indent-subprogram}}{188} ! \entry {\code {fortran-mode}}{186} \entry {\code {fortran-next-statement}}{187} \entry {\code {fortran-previous-statement}}{187} \entry {\code {fortran-split-line}}{188} --- 278,289 ---- \entry {\code {find-tag-regexp}}{178} \entry {\code {finder-by-keyword}}{48} \entry {\code {fortran-auto-fill-mode}}{192} ! \entry {\code {fortran-column-ruler}}{193} ! \entry {\code {fortran-comment-region}}{192} ! \entry {\code {fortran-indent-line}}{188} ! \entry {\code {fortran-indent-new-line}}{188} \entry {\code {fortran-indent-subprogram}}{188} ! \entry {\code {fortran-mode}}{187} \entry {\code {fortran-next-statement}}{187} \entry {\code {fortran-previous-statement}}{187} \entry {\code {fortran-split-line}}{188} *************** *** 298,332 **** \entry {\code {frame-configuration-to-register}}{68} \initial {G} \entry {\code {gdb}}{197} ! \entry {\code {global-set-key}}{296} ! \entry {\code {global-unset-key}}{296} ! \entry {\code {gnus}}{265} ! \entry {\code {gnus-group-exit}}{266} ! \entry {\code {gnus-group-kill-group}}{266} ! \entry {\code {gnus-group-list-all-groups}}{266} ! \entry {\code {gnus-group-list-groups}}{266} ! \entry {\code {gnus-group-next-group}}{267} ! \entry {\code {gnus-group-next-unread-group}}{267} ! \entry {\code {gnus-group-prev-group}}{267} ! \entry {\code {gnus-group-prev-unread-group}}{267} ! \entry {\code {gnus-group-read-group}}{266} ! \entry {\code {gnus-group-suspend}}{266} ! \entry {\code {gnus-group-unsubscribe-current-group}}{266} ! \entry {\code {gnus-summary-isearch-article}}{267} ! \entry {\code {gnus-summary-next-page}}{266} ! \entry {\code {gnus-summary-next-same-subject}}{267} ! \entry {\code {gnus-summary-next-subject}}{267} ! \entry {\code {gnus-summary-next-unread-article}}{267} ! \entry {\code {gnus-summary-prev-page}}{267} ! \entry {\code {gnus-summary-prev-same-subject}}{267} ! \entry {\code {gnus-summary-prev-subject}}{267} ! \entry {\code {gnus-summary-prev-unread-article}}{267} ! \entry {\code {gnus-summary-search-article-forward}}{267} ! \entry {\code {gnus-summary-sort-by-author}}{267} ! \entry {\code {gnus-summary-sort-by-date}}{267} ! \entry {\code {gnus-summary-sort-by-number}}{267} ! \entry {\code {gnus-summary-sort-by-subject}}{267} ! \entry {\code {gomoku}}{280} \entry {\code {goto-char}}{26} \entry {\code {goto-line}}{26} \entry {\code {grep}}{196} --- 299,333 ---- \entry {\code {frame-configuration-to-register}}{68} \initial {G} \entry {\code {gdb}}{197} ! \entry {\code {global-set-key}}{298} ! \entry {\code {global-unset-key}}{298} ! \entry {\code {gnus}}{267} ! \entry {\code {gnus-group-exit}}{268} ! \entry {\code {gnus-group-kill-group}}{268} ! \entry {\code {gnus-group-list-all-groups}}{268} ! \entry {\code {gnus-group-list-groups}}{268} ! \entry {\code {gnus-group-next-group}}{269} ! \entry {\code {gnus-group-next-unread-group}}{269} ! \entry {\code {gnus-group-prev-group}}{269} ! \entry {\code {gnus-group-prev-unread-group}}{269} ! \entry {\code {gnus-group-read-group}}{268} ! \entry {\code {gnus-group-suspend}}{268} ! \entry {\code {gnus-group-unsubscribe-current-group}}{268} ! \entry {\code {gnus-summary-isearch-article}}{269} ! \entry {\code {gnus-summary-next-page}}{268} ! \entry {\code {gnus-summary-next-same-subject}}{269} ! \entry {\code {gnus-summary-next-subject}}{269} ! \entry {\code {gnus-summary-next-unread-article}}{269} ! \entry {\code {gnus-summary-prev-page}}{269} ! \entry {\code {gnus-summary-prev-same-subject}}{269} ! \entry {\code {gnus-summary-prev-subject}}{269} ! \entry {\code {gnus-summary-prev-unread-article}}{269} ! \entry {\code {gnus-summary-search-article-forward}}{269} ! \entry {\code {gnus-summary-sort-by-author}}{269} ! \entry {\code {gnus-summary-sort-by-date}}{269} ! \entry {\code {gnus-summary-sort-by-number}}{269} ! \entry {\code {gnus-summary-sort-by-subject}}{269} ! \entry {\code {gomoku}}{282} \entry {\code {goto-char}}{26} \entry {\code {goto-line}}{26} \entry {\code {grep}}{196} *************** *** 342,348 **** \entry {\code {gud-tbreak}}{199} \entry {\code {gud-up}}{199} \initial {H} ! \entry {\code {hanoi}}{280} \entry {\code {help-with-tutorial}}{25} \entry {\code {hide-body}}{151} \entry {\code {hide-entry}}{151} --- 343,349 ---- \entry {\code {gud-tbreak}}{199} \entry {\code {gud-up}}{199} \initial {H} ! \entry {\code {hanoi}}{282} \entry {\code {help-with-tutorial}}{25} \entry {\code {hide-body}}{151} \entry {\code {hide-entry}}{151} *************** *** 368,374 **** \entry {\code {insert-cyclic-diary-entry}}{262} \entry {\code {insert-diary-entry}}{261} \entry {\code {insert-file}}{116} ! \entry {\code {insert-kbd-macro}}{292} \entry {\code {insert-monthly-diary-entry}}{261} \entry {\code {insert-parentheses}}{172} \entry {\code {insert-register}}{67} --- 369,375 ---- \entry {\code {insert-cyclic-diary-entry}}{262} \entry {\code {insert-diary-entry}}{261} \entry {\code {insert-file}}{116} ! \entry {\code {insert-kbd-macro}}{294} \entry {\code {insert-monthly-diary-entry}}{261} \entry {\code {insert-parentheses}}{172} \entry {\code {insert-register}}{67} *************** *** 388,395 **** \entry {\code {jump-to-register}}{67} \entry {\code {just-one-space}}{58} \initial {K} ! \entry {\code {kbd-macro-query}}{293} ! \entry {\code {keyboard-translate}}{301} \entry {\code {kill-all-abbrevs}}{206} \entry {\code {kill-buffer}}{120} \entry {\code {kill-comment}}{170} --- 389,396 ---- \entry {\code {jump-to-register}}{67} \entry {\code {just-one-space}}{58} \initial {K} ! \entry {\code {kbd-macro-query}}{295} ! \entry {\code {keyboard-translate}}{303} \entry {\code {kill-all-abbrevs}}{206} \entry {\code {kill-buffer}}{120} \entry {\code {kill-comment}}{170} *************** *** 396,402 **** \entry {\code {kill-compilation}}{195} \entry {\code {kill-ispell}}{92} \entry {\code {kill-line}}{58} ! \entry {\code {kill-local-variable}}{288} \entry {\code {kill-rectangle}}{64} \entry {\code {kill-region}}{59} \entry {\code {kill-ring-save}}{60} --- 397,403 ---- \entry {\code {kill-compilation}}{195} \entry {\code {kill-ispell}}{92} \entry {\code {kill-line}}{58} ! \entry {\code {kill-local-variable}}{290} \entry {\code {kill-rectangle}}{64} \entry {\code {kill-region}}{59} \entry {\code {kill-ring-save}}{60} *************** *** 418,433 **** \entry {\code {list-command-history}}{40} \entry {\code {list-directory}}{114} \entry {\code {list-matching-lines}}{87} ! \entry {\code {list-options}}{286} \entry {\code {list-tags}}{179} \entry {\code {list-yahrzeit-dates}}{255} \entry {\code {load}}{201} \entry {\code {load-file}}{201} \entry {\code {load-library}}{201} ! \entry {\code {local-set-key}}{296} ! \entry {\code {local-unset-key}}{296} ! \entry {\code {lpr-buffer}}{275} ! \entry {\code {lpr-region}}{275} \initial {M} \entry {\code {mail}}{215} \entry {\code {mail-cc}}{219} --- 419,434 ---- \entry {\code {list-command-history}}{40} \entry {\code {list-directory}}{114} \entry {\code {list-matching-lines}}{87} ! \entry {\code {list-options}}{288} \entry {\code {list-tags}}{179} \entry {\code {list-yahrzeit-dates}}{255} \entry {\code {load}}{201} \entry {\code {load-file}}{201} \entry {\code {load-library}}{201} ! \entry {\code {local-set-key}}{298} ! \entry {\code {local-unset-key}}{298} ! \entry {\code {lpr-buffer}}{277} ! \entry {\code {lpr-region}}{277} \initial {M} \entry {\code {mail}}{215} \entry {\code {mail-cc}}{219} *************** *** 445,453 **** \entry {\code {make-face-italic}}{130} \entry {\code {make-face-unbold}}{130} \entry {\code {make-face-unitalic}}{130} ! \entry {\code {make-local-variable}}{288} \entry {\code {make-symbolic-link}}{116} ! \entry {\code {make-variable-buffer-local}}{288} \entry {\code {manual-entry}}{173} \entry {\code {mark-calendar-holidays}}{251} \entry {\code {mark-defun}}{162} --- 446,454 ---- \entry {\code {make-face-italic}}{130} \entry {\code {make-face-unbold}}{130} \entry {\code {make-face-unitalic}}{130} ! \entry {\code {make-local-variable}}{290} \entry {\code {make-symbolic-link}}{116} ! \entry {\code {make-variable-buffer-local}}{290} \entry {\code {manual-entry}}{173} \entry {\code {mark-calendar-holidays}}{251} \entry {\code {mark-defun}}{162} *************** *** 466,476 **** \entry {\code {mouse-yank-at-click}}{127} \entry {\code {move-over-close-and-reindent}}{172} \entry {\code {move-to-window-line}}{26} ! \entry {\code {mpuz}}{280} \initial {N} ! \entry {\code {name-last-kbd-macro}}{292} ! \entry {\code {narrow-to-page}}{274} ! \entry {\code {narrow-to-region}}{274} \entry {\code {negative-argument}}{31} \entry {\code {newline}}{25} \entry {\code {newline-and-indent}}{164} --- 467,477 ---- \entry {\code {mouse-yank-at-click}}{127} \entry {\code {move-over-close-and-reindent}}{172} \entry {\code {move-to-window-line}}{26} ! \entry {\code {mpuz}}{282} \initial {N} ! \entry {\code {name-last-kbd-macro}}{294} ! \entry {\code {narrow-to-page}}{276} ! \entry {\code {narrow-to-region}}{276} \entry {\code {negative-argument}}{31} \entry {\code {newline}}{25} \entry {\code {newline-and-indent}}{164} *************** *** 484,493 **** \entry {\code {nroff-mode}}{157} \initial {O} \entry {\code {occur}}{87} ! \entry {\code {open-dribble-file}}{314} \entry {\code {open-line}}{29} \entry {\code {open-rectangle}}{65} ! \entry {\code {open-termscript}}{314} \entry {\code {other-window}}{124} \entry {\code {outline-backward-same-level}}{150} \entry {\code {outline-forward-same-level}}{150} --- 485,494 ---- \entry {\code {nroff-mode}}{157} \initial {O} \entry {\code {occur}}{87} ! \entry {\code {open-dribble-file}}{316} \entry {\code {open-line}}{29} \entry {\code {open-rectangle}}{65} ! \entry {\code {open-termscript}}{316} \entry {\code {other-window}}{124} \entry {\code {outline-backward-same-level}}{150} \entry {\code {outline-forward-same-level}}{150} *************** *** 496,502 **** \entry {\code {outline-next-visible-heading}}{150} \entry {\code {outline-previous-visible-heading}}{150} \entry {\code {outline-up-heading}}{150} ! \entry {\code {overwrite-mode}}{283} \initial {P} \entry {\code {phases-of-moon}}{253} \entry {\code {picture-backward-clear-column}}{212} --- 497,503 ---- \entry {\code {outline-next-visible-heading}}{150} \entry {\code {outline-previous-visible-heading}}{150} \entry {\code {outline-up-heading}}{150} ! \entry {\code {overwrite-mode}}{285} \initial {P} \entry {\code {phases-of-moon}}{253} \entry {\code {picture-backward-clear-column}}{212} *************** *** 531,538 **** \entry {\code {previous-history-element}}{39} \entry {\code {previous-line}}{26} \entry {\code {previous-matching-history-element}}{40} ! \entry {\code {print-buffer}}{275} ! \entry {\code {print-region}}{275} \initial {Q} \entry {\code {query-replace}}{86} \entry {\code {query-replace-regexp}}{86} --- 532,539 ---- \entry {\code {previous-history-element}}{39} \entry {\code {previous-line}}{26} \entry {\code {previous-matching-history-element}}{40} ! \entry {\code {print-buffer}}{277} ! \entry {\code {print-region}}{277} \initial {Q} \entry {\code {query-replace}}{86} \entry {\code {query-replace-regexp}}{86} *************** *** 605,611 **** \entry {\code {scroll-calendar-right-three-months}}{249} \entry {\code {scroll-down}}{69} \entry {\code {scroll-left}}{70} ! \entry {\code {scroll-other-window}}{124} \entry {\code {scroll-right}}{70} \entry {\code {scroll-up}}{69} \entry {\code {sdb}}{197} --- 606,612 ---- \entry {\code {scroll-calendar-right-three-months}}{249} \entry {\code {scroll-down}}{69} \entry {\code {scroll-left}}{70} ! \entry {\code {scroll-other-window}}{125} \entry {\code {scroll-right}}{70} \entry {\code {scroll-up}}{69} \entry {\code {sdb}}{197} *************** *** 612,619 **** \entry {\code {search-backward}}{78} \entry {\code {search-forward}}{78} \entry {\code {self-insert}}{25} ! \entry {\code {send-invisible}}{273} ! \entry {\code {server-edit}}{277} \entry {\code {set-background-color}}{128} \entry {\code {set-border-color}}{128} \entry {\code {set-comment-column}}{171} --- 613,620 ---- \entry {\code {search-backward}}{78} \entry {\code {search-forward}}{78} \entry {\code {self-insert}}{25} ! \entry {\code {send-invisible}}{275} ! \entry {\code {server-edit}}{279} \entry {\code {set-background-color}}{128} \entry {\code {set-border-color}}{128} \entry {\code {set-comment-column}}{171} *************** *** 626,644 **** \entry {\code {set-fill-column}}{145} \entry {\code {set-fill-prefix}}{146} \entry {\code {set-foreground-color}}{128} ! \entry {\code {set-gnu-bindings}}{281} \entry {\code {set-goal-column}}{27} ! \entry {\code {set-gosmacs-bindings}}{281} \entry {\code {set-mark-command}}{51} \entry {\code {set-mouse-color}}{128} \entry {\code {set-rmail-inbox-list}}{226} \entry {\code {set-selective-display}}{71} ! \entry {\code {set-variable}}{285} \entry {\code {set-visited-file-name}}{98} ! \entry {\code {setq-default}}{288} ! \entry {\code {shell}}{270} ! \entry {\code {shell-command}}{270} ! \entry {\code {shell-command-on-region}}{270} \entry {\code {show-all}}{151} \entry {\code {show-all-diary-entries}}{258} \entry {\code {show-branches}}{151} --- 627,645 ---- \entry {\code {set-fill-column}}{145} \entry {\code {set-fill-prefix}}{146} \entry {\code {set-foreground-color}}{128} ! \entry {\code {set-gnu-bindings}}{283} \entry {\code {set-goal-column}}{27} ! \entry {\code {set-gosmacs-bindings}}{283} \entry {\code {set-mark-command}}{51} \entry {\code {set-mouse-color}}{128} \entry {\code {set-rmail-inbox-list}}{226} \entry {\code {set-selective-display}}{71} ! \entry {\code {set-variable}}{287} \entry {\code {set-visited-file-name}}{98} ! \entry {\code {setq-default}}{290} ! \entry {\code {shell}}{272} ! \entry {\code {shell-command}}{272} ! \entry {\code {shell-command-on-region}}{272} \entry {\code {show-all}}{151} \entry {\code {show-all-diary-entries}}{258} \entry {\code {show-branches}}{151} *************** *** 646,665 **** \entry {\code {show-entry}}{151} \entry {\code {show-subtree}}{151} \entry {\code {slitex-mode}}{152} ! \entry {\code {sort-columns}}{269} ! \entry {\code {sort-fields}}{268} ! \entry {\code {sort-lines}}{268} ! \entry {\code {sort-numeric-fields}}{268} ! \entry {\code {sort-pages}}{268} ! \entry {\code {sort-paragraphs}}{268} \entry {\code {split-line}}{136} \entry {\code {split-window-horizontally}}{124} ! \entry {\code {split-window-vertically}}{123} \entry {\code {spook}}{220} \entry {\code {standard-display-european}}{71} ! \entry {\code {start-kbd-macro}}{291} \entry {\code {string-rectangle}}{64} ! \entry {\code {substitute-key-definition}}{298} \entry {\code {sunrise-sunset}}{252} \entry {\code {super-apropos}}{48} \entry {\code {suspend-emacs}}{24} --- 647,666 ---- \entry {\code {show-entry}}{151} \entry {\code {show-subtree}}{151} \entry {\code {slitex-mode}}{152} ! \entry {\code {sort-columns}}{271} ! \entry {\code {sort-fields}}{270} ! \entry {\code {sort-lines}}{270} ! \entry {\code {sort-numeric-fields}}{270} ! \entry {\code {sort-pages}}{270} ! \entry {\code {sort-paragraphs}}{270} \entry {\code {split-line}}{136} \entry {\code {split-window-horizontally}}{124} ! \entry {\code {split-window-vertically}}{124} \entry {\code {spook}}{220} \entry {\code {standard-display-european}}{71} ! \entry {\code {start-kbd-macro}}{293} \entry {\code {string-rectangle}}{64} ! \entry {\code {substitute-key-definition}}{300} \entry {\code {sunrise-sunset}}{252} \entry {\code {super-apropos}}{48} \entry {\code {suspend-emacs}}{24} *************** *** 672,685 **** \entry {\code {tags-loop-continue}}{178} \entry {\code {tags-query-replace}}{178} \entry {\code {tags-search}}{178} ! \entry {\code {tc-associate-buffer}}{276} ! \entry {\code {tc-dissociate}}{276} ! \entry {\code {tc-merge}}{276} ! \entry {\code {tc-recenter}}{276} ! \entry {\code {tc-scroll-down}}{276} ! \entry {\code {tc-scroll-up}}{276} ! \entry {\code {tc-split}}{275} ! \entry {\code {tc-two-columns}}{275} \entry {\code {tex-bibtex-file}}{156} \entry {\code {tex-buffer}}{155} \entry {\code {tex-close-latex-block}}{154} --- 673,686 ---- \entry {\code {tags-loop-continue}}{178} \entry {\code {tags-query-replace}}{178} \entry {\code {tags-search}}{178} ! \entry {\code {tc-associate-buffer}}{278} ! \entry {\code {tc-dissociate}}{278} ! \entry {\code {tc-merge}}{278} ! \entry {\code {tc-recenter}}{278} ! \entry {\code {tc-scroll-down}}{278} ! \entry {\code {tc-scroll-up}}{278} ! \entry {\code {tc-split}}{277} ! \entry {\code {tc-two-columns}}{277} \entry {\code {tex-bibtex-file}}{156} \entry {\code {tex-buffer}}{155} \entry {\code {tex-close-latex-block}}{154} *************** *** 697,703 **** \entry {\code {tex-view}}{155} \entry {\code {text-mode}}{147} \entry {\code {toggle-scroll-bar}}{130} ! \entry {\code {top-level}}{308} \entry {\code {transient-mark-mode}}{52} \entry {\code {transpose-chars}}{89} \entry {\code {transpose-lines}}{90} --- 698,704 ---- \entry {\code {tex-view}}{155} \entry {\code {text-mode}}{147} \entry {\code {toggle-scroll-bar}}{130} ! \entry {\code {top-level}}{310} \entry {\code {transient-mark-mode}}{52} \entry {\code {transpose-chars}}{89} \entry {\code {transpose-lines}}{90} *************** *** 726,732 **** \entry {\code {vc-revert-buffer}}{107} \entry {\code {vc-toggle-read-only}}{119} \entry {\code {vc-update-change-log}}{109} ! \entry {\code {vi-mode}}{281} \entry {\code {view-buffer}}{119} \entry {\code {view-diary-entries}}{258} \entry {\code {view-emacs-news}}{50} --- 727,733 ---- \entry {\code {vc-revert-buffer}}{107} \entry {\code {vc-toggle-read-only}}{119} \entry {\code {vc-update-change-log}}{109} ! \entry {\code {vi-mode}}{283} \entry {\code {view-buffer}}{119} \entry {\code {view-diary-entries}}{258} \entry {\code {view-emacs-news}}{50} *************** *** 733,739 **** \entry {\code {view-file}}{115} \entry {\code {view-lossage}}{49} \entry {\code {view-register}}{67} ! \entry {\code {vip-mode}}{281} \entry {\code {visit-tags-table}}{176} \initial {W} \entry {\code {what-cursor-position}}{30} --- 734,740 ---- \entry {\code {view-file}}{115} \entry {\code {view-lossage}}{49} \entry {\code {view-register}}{67} ! \entry {\code {vip-mode}}{283} \entry {\code {visit-tags-table}}{176} \initial {W} \entry {\code {what-cursor-position}}{30} *************** *** 740,746 **** \entry {\code {what-line}}{30} \entry {\code {what-page}}{30} \entry {\code {where-is}}{47} ! \entry {\code {widen}}{274} \entry {\code {window-configuration-to-register}}{68} \entry {\code {word-search-backward}}{78} \entry {\code {word-search-forward}}{78} --- 741,747 ---- \entry {\code {what-line}}{30} \entry {\code {what-page}}{30} \entry {\code {where-is}}{47} ! \entry {\code {widen}}{276} \entry {\code {window-configuration-to-register}}{68} \entry {\code {word-search-backward}}{78} \entry {\code {word-search-forward}}{78} *************** *** 751,756 **** \entry {\code {yank}}{60} \entry {\code {yank-pop}}{61} \entry {\code {yank-rectangle}}{64} ! \entry {\code {yow}}{280} \initial {Z} \entry {\code {zap-to-char}}{59} --- 752,757 ---- \entry {\code {yank}}{60} \entry {\code {yank-pop}}{61} \entry {\code {yank-rectangle}}{64} ! \entry {\code {yow}}{282} \initial {Z} \entry {\code {zap-to-char}}{59} diff -cprP --exclude=*.elc emacs-19.14/man/emacs.kys emacs-19.15/man/emacs.kys *** emacs-19.14/man/emacs.kys Wed Jun 9 11:02:41 1993 --- emacs-19.15/man/emacs.kys Fri Jun 18 15:46:35 1993 *************** *** 44,61 **** \entry {\code {c \r {(Dired)}}}{238} \entry {\code {C \r {(Dired)}}}{239} \entry {\code {c \r {(Rmail)}}}{230} ! \entry {\code {C-]}}{308} \entry {\code {C-{\_}}}{33} \entry {\code {C-{\tt\char'100}}}{52} \entry {\code {C-a}}{26} \entry {\code {C-a \r {(Calendar mode)}}}{248} ! \entry {\code {C-a \r {(Shell mode)}}}{272} \entry {\code {C-b}}{26} \entry {\code {C-b \r {(Calendar mode)}}}{247} \entry {\code {C-c ' \r {(Picture mode)}}}{212} \entry {\code {C-c . \r {(Picture mode)}}}{212} \entry {\code {C-c / \r {(Picture mode)}}}{212} ! \entry {\code {C-c ; \r {(Fortran mode)}}}{191} \entry {\code {C-c ` \r {(Picture mode)}}}{212} \entry {\code {C-c {\tt\char'173} \r {(\TeX{} mode)}}}{153} \entry {\code {C-c {\tt\char'175} \r {(\TeX{} mode)}}}{153} --- 44,61 ---- \entry {\code {c \r {(Dired)}}}{238} \entry {\code {C \r {(Dired)}}}{239} \entry {\code {c \r {(Rmail)}}}{230} ! \entry {\code {C-]}}{310} \entry {\code {C-{\_}}}{33} \entry {\code {C-{\tt\char'100}}}{52} \entry {\code {C-a}}{26} \entry {\code {C-a \r {(Calendar mode)}}}{248} ! \entry {\code {C-a \r {(Shell mode)}}}{274} \entry {\code {C-b}}{26} \entry {\code {C-b \r {(Calendar mode)}}}{247} \entry {\code {C-c ' \r {(Picture mode)}}}{212} \entry {\code {C-c . \r {(Picture mode)}}}{212} \entry {\code {C-c / \r {(Picture mode)}}}{212} ! \entry {\code {C-c ; \r {(Fortran mode)}}}{192} \entry {\code {C-c ` \r {(Picture mode)}}}{212} \entry {\code {C-c {\tt\char'173} \r {(\TeX{} mode)}}}{153} \entry {\code {C-c {\tt\char'175} \r {(\TeX{} mode)}}}{153} *************** *** 65,71 **** \entry {\code {C-c {\tt\indexbackslash } \r {(Picture mode)}}}{212} \entry {\code {C-c {\tt\less} \r {(GUD)}}}{199} \entry {\code {C-c {\tt\less} \r {(Picture mode)}}}{212} ! \entry {\code {C-c C-{\tt\indexbackslash } \r {(Shell mode)}}}{272} \entry {\code {C-c C-b \r {(Outline mode)}}}{150} \entry {\code {C-c C-b \r {(Picture mode)}}}{213} \entry {\code {C-c C-b \r {(\TeX{} mode)}}}{155} --- 65,71 ---- \entry {\code {C-c {\tt\indexbackslash } \r {(Picture mode)}}}{212} \entry {\code {C-c {\tt\less} \r {(GUD)}}}{199} \entry {\code {C-c {\tt\less} \r {(Picture mode)}}}{212} ! \entry {\code {C-c C-{\tt\indexbackslash } \r {(Shell mode)}}}{274} \entry {\code {C-c C-b \r {(Outline mode)}}}{150} \entry {\code {C-c C-b \r {(Picture mode)}}}{213} \entry {\code {C-c C-b \r {(\TeX{} mode)}}}{155} *************** *** 96,109 **** \entry {\code {C-c C-n \r {(GUD)}}}{198} \entry {\code {C-c C-n \r {(Outline mode)}}}{150} \entry {\code {C-c C-o \r {(La\TeX{} mode)}}}{154} ! \entry {\code {C-c C-o \r {(Shell mode)}}}{272} \entry {\code {C-c C-p \r {(Fortran mode)}}}{187} \entry {\code {C-c C-p \r {(Outline mode)}}}{150} \entry {\code {C-c C-p \r {(\TeX{} mode)}}}{155} \entry {\code {C-c C-q \r {(Mail mode)}}}{220} \entry {\code {C-c C-q \r {(\TeX{} mode)}}}{155} ! \entry {\code {C-c C-r \r {(Fortran mode)}}}{192} ! \entry {\code {C-c C-r \r {(Shell mode)}}}{272} \entry {\code {C-c C-r \r {(\TeX{} mode)}}}{155} \entry {\code {C-c C-s \r {(GUD)}}}{198} \entry {\code {C-c C-s \r {(Mail mode)}}}{219} --- 96,109 ---- \entry {\code {C-c C-n \r {(GUD)}}}{198} \entry {\code {C-c C-n \r {(Outline mode)}}}{150} \entry {\code {C-c C-o \r {(La\TeX{} mode)}}}{154} ! \entry {\code {C-c C-o \r {(Shell mode)}}}{274} \entry {\code {C-c C-p \r {(Fortran mode)}}}{187} \entry {\code {C-c C-p \r {(Outline mode)}}}{150} \entry {\code {C-c C-p \r {(\TeX{} mode)}}}{155} \entry {\code {C-c C-q \r {(Mail mode)}}}{220} \entry {\code {C-c C-q \r {(\TeX{} mode)}}}{155} ! \entry {\code {C-c C-r \r {(Fortran mode)}}}{193} ! \entry {\code {C-c C-r \r {(Shell mode)}}}{274} \entry {\code {C-c C-r \r {(\TeX{} mode)}}}{155} \entry {\code {C-c C-s \r {(GUD)}}}{198} \entry {\code {C-c C-s \r {(Mail mode)}}}{219} *************** *** 117,128 **** \entry {\code {C-c C-x \r {(Picture mode)}}}{214} \entry {\code {C-c C-y \r {(Mail mode)}}}{219} \entry {\code {C-c C-y \r {(Picture mode)}}}{214} ! \entry {\code {C-c C-z \r {(Shell mode)}}}{272} \entry {\code {C-c TAB \r {(Picture mode)}}}{213} \entry {\code {C-c TAB \r {(\TeX{} mode)}}}{156} \entry {\code {C-d}}{57} \entry {\code {C-d \r {(Rmail)}}}{224} ! \entry {\code {C-d \r {(Shell mode)}}}{272} \entry {\code {C-e}}{26} \entry {\code {C-e \r {(Calendar mode)}}}{248} \entry {\code {C-f}}{26} --- 117,128 ---- \entry {\code {C-c C-x \r {(Picture mode)}}}{214} \entry {\code {C-c C-y \r {(Mail mode)}}}{219} \entry {\code {C-c C-y \r {(Picture mode)}}}{214} ! \entry {\code {C-c C-z \r {(Shell mode)}}}{274} \entry {\code {C-c TAB \r {(Picture mode)}}}{213} \entry {\code {C-c TAB \r {(\TeX{} mode)}}}{156} \entry {\code {C-d}}{57} \entry {\code {C-d \r {(Rmail)}}}{224} ! \entry {\code {C-d \r {(Shell mode)}}}{274} \entry {\code {C-e}}{26} \entry {\code {C-e \r {(Calendar mode)}}}{248} \entry {\code {C-f}}{26} *************** *** 143,153 **** \entry {\code {C-h m}}{49} \entry {\code {C-h n}}{50} \entry {\code {C-h p}}{48} ! \entry {\code {C-h s}}{302} \entry {\code {C-h t}}{25} \entry {\code {C-h w}}{47} \entry {\code {C-k}}{58} ! \entry {\code {C-k \r {(GNUS)}}}{266} \entry {\code {C-l}}{69} \entry {\code {C-M-{\tt\char'100}}}{162} \entry {\code {C-M-{\tt\indexbackslash }}}{136} --- 143,153 ---- \entry {\code {C-h m}}{49} \entry {\code {C-h n}}{50} \entry {\code {C-h p}}{48} ! \entry {\code {C-h s}}{304} \entry {\code {C-h t}}{25} \entry {\code {C-h w}}{47} \entry {\code {C-k}}{58} ! \entry {\code {C-k \r {(GNUS)}}}{268} \entry {\code {C-l}}{69} \entry {\code {C-M-{\tt\char'100}}}{162} \entry {\code {C-M-{\tt\indexbackslash }}}{136} *************** *** 154,160 **** \entry {\code {C-M-a}}{162} \entry {\code {C-M-a \r {(Fortran mode)}}}{187} \entry {\code {C-M-b}}{161} ! \entry {\code {C-M-c}}{278} \entry {\code {C-M-d}}{161} \entry {\code {C-M-d \r {(Dired)}}}{243} \entry {\code {C-M-e}}{162} --- 154,160 ---- \entry {\code {C-M-a}}{162} \entry {\code {C-M-a \r {(Fortran mode)}}}{187} \entry {\code {C-M-b}}{161} ! \entry {\code {C-M-c}}{280} \entry {\code {C-M-d}}{161} \entry {\code {C-M-d \r {(Dired)}}}{243} \entry {\code {C-M-e}}{162} *************** *** 167,178 **** \entry {\code {C-M-l \r {(Rmail)}}}{231} \entry {\code {C-M-n}}{161} \entry {\code {C-M-n \r {(Dired)}}}{243} ! \entry {\code {C-M-n \r {(GNUS Summary mode)}}}{267} \entry {\code {C-M-n \r {(Rmail)}}}{228} \entry {\code {C-M-o}}{136} \entry {\code {C-M-p}}{161} \entry {\code {C-M-p \r {(Dired)}}}{243} ! \entry {\code {C-M-p \r {(GNUS Summary mode)}}}{267} \entry {\code {C-M-p \r {(Rmail)}}}{228} \entry {\code {C-M-q}}{164} \entry {\code {C-M-q \r {(Fortran mode)}}}{188} --- 167,178 ---- \entry {\code {C-M-l \r {(Rmail)}}}{231} \entry {\code {C-M-n}}{161} \entry {\code {C-M-n \r {(Dired)}}}{243} ! \entry {\code {C-M-n \r {(GNUS Summary mode)}}}{269} \entry {\code {C-M-n \r {(Rmail)}}}{228} \entry {\code {C-M-o}}{136} \entry {\code {C-M-p}}{161} \entry {\code {C-M-p \r {(Dired)}}}{243} ! \entry {\code {C-M-p \r {(GNUS Summary mode)}}}{269} \entry {\code {C-M-p \r {(Rmail)}}}{228} \entry {\code {C-M-q}}{164} \entry {\code {C-M-q \r {(Fortran mode)}}}{188} *************** *** 183,189 **** \entry {\code {C-M-t \r {(Rmail)}}}{232} \entry {\code {C-M-u}}{161} \entry {\code {C-M-u \r {(Dired)}}}{243} ! \entry {\code {C-M-v}}{124} \entry {\code {C-M-w}}{61} \entry {\code {C-M-x \r {(Emacs-Lisp mode)}}}{203} \entry {\code {C-M-x \r {(Lisp mode)}}}{204} --- 183,189 ---- \entry {\code {C-M-t \r {(Rmail)}}}{232} \entry {\code {C-M-u}}{161} \entry {\code {C-M-u \r {(Dired)}}}{243} ! \entry {\code {C-M-v}}{125} \entry {\code {C-M-w}}{61} \entry {\code {C-M-x \r {(Emacs-Lisp mode)}}}{203} \entry {\code {C-M-x \r {(Lisp mode)}}}{204} *************** *** 190,197 **** \entry {\code {C-n}}{26} \entry {\code {C-n \r {(Calendar mode)}}}{247} \entry {\code {C-n \r {(Dired)}}}{235} ! \entry {\code {C-n \r {(GNUS Group mode)}}}{267} ! \entry {\code {C-n \r {(GNUS Summary mode)}}}{267} \entry {\code {C-o}}{29} \entry {\code {C-o \r {(Dired)}}}{237} \entry {\code {C-o \r {(Rmail)}}}{226} --- 190,197 ---- \entry {\code {C-n}}{26} \entry {\code {C-n \r {(Calendar mode)}}}{247} \entry {\code {C-n \r {(Dired)}}}{235} ! \entry {\code {C-n \r {(GNUS Group mode)}}}{269} ! \entry {\code {C-n \r {(GNUS Summary mode)}}}{269} \entry {\code {C-o}}{29} \entry {\code {C-o \r {(Dired)}}}{237} \entry {\code {C-o \r {(Rmail)}}}{226} *************** *** 198,205 **** \entry {\code {C-p}}{26} \entry {\code {C-p \r {(Calendar mode)}}}{247} \entry {\code {C-p \r {(Dired)}}}{235} ! \entry {\code {C-p \r {(GNUS Group mode)}}}{267} ! \entry {\code {C-p \r {(GNUS Summary mode)}}}{267} \entry {\code {C-q}}{25} \entry {\code {C-r}}{75} \entry {\code {C-s}}{75} --- 198,205 ---- \entry {\code {C-p}}{26} \entry {\code {C-p \r {(Calendar mode)}}}{247} \entry {\code {C-p \r {(Dired)}}}{235} ! \entry {\code {C-p \r {(GNUS Group mode)}}}{269} ! \entry {\code {C-p \r {(GNUS Summary mode)}}}{269} \entry {\code {C-q}}{25} \entry {\code {C-r}}{75} \entry {\code {C-s}}{75} *************** *** 213,222 **** \entry {\code {C-v}}{69} \entry {\code {C-v \r {(Calendar mode)}}}{249} \entry {\code {C-w}}{59} ! \entry {\code {C-x #}}{277} \entry {\code {C-x $}}{71} ! \entry {\code {C-x (}}{291} ! \entry {\code {C-x )}}{291} \entry {\code {C-x .}}{146} \entry {\code {C-x ;}}{171} \entry {\code {C-x =}}{30} --- 213,222 ---- \entry {\code {C-v}}{69} \entry {\code {C-v \r {(Calendar mode)}}}{249} \entry {\code {C-w}}{59} ! \entry {\code {C-x #}}{279} \entry {\code {C-x $}}{71} ! \entry {\code {C-x (}}{293} ! \entry {\code {C-x )}}{293} \entry {\code {C-x .}}{146} \entry {\code {C-x ;}}{171} \entry {\code {C-x =}}{30} *************** *** 233,239 **** \entry {\code {C-x {\tt\less} \r {(Calendar mode)}}}{249} \entry {\code {C-x 0}}{126} \entry {\code {C-x 1}}{126} ! \entry {\code {C-x 2}}{123} \entry {\code {C-x 3}}{124} \entry {\code {C-x 4}}{125} \entry {\code {C-x 4 .}}{177} --- 233,239 ---- \entry {\code {C-x {\tt\less} \r {(Calendar mode)}}}{249} \entry {\code {C-x 0}}{126} \entry {\code {C-x 1}}{126} ! \entry {\code {C-x 2}}{124} \entry {\code {C-x 3}}{124} \entry {\code {C-x 4}}{125} \entry {\code {C-x 4 .}}{177} *************** *** 246,259 **** \entry {\code {C-x 5 0}}{131} \entry {\code {C-x 5 f}}{96} \entry {\code {C-x 5 m}}{215} ! \entry {\code {C-x 6 1}}{276} ! \entry {\code {C-x 6 2}}{275} ! \entry {\code {C-x 6 b}}{276} ! \entry {\code {C-x 6 C-l}}{276} ! \entry {\code {C-x 6 d}}{276} ! \entry {\code {C-x 6 \key {DEL}}}{276} ! \entry {\code {C-x 6 s}}{275} ! \entry {\code {C-x 6 \key {SPC}}}{276} \entry {\code {C-x 8}}{72} \entry {\code {C-x a g}}{206} \entry {\code {C-x a i g}}{206} --- 246,259 ---- \entry {\code {C-x 5 0}}{131} \entry {\code {C-x 5 f}}{96} \entry {\code {C-x 5 m}}{215} ! \entry {\code {C-x 6 1}}{278} ! \entry {\code {C-x 6 2}}{277} ! \entry {\code {C-x 6 b}}{278} ! \entry {\code {C-x 6 C-l}}{278} ! \entry {\code {C-x 6 d}}{278} ! \entry {\code {C-x 6 \key {DEL}}}{278} ! \entry {\code {C-x 6 s}}{277} ! \entry {\code {C-x 6 \key {SPC}}}{278} \entry {\code {C-x 8}}{72} \entry {\code {C-x a g}}{206} \entry {\code {C-x a i g}}{206} *************** *** 281,287 **** \entry {\code {C-x C-x}}{51} \entry {\code {C-x d}}{235} \entry {\code {C-x DEL}}{89, 141} ! \entry {\code {C-x e}}{291} \entry {\code {C-x ESC ESC}}{40} \entry {\code {C-x f}}{145} \entry {\code {C-x h}}{54} --- 281,287 ---- \entry {\code {C-x C-x}}{51} \entry {\code {C-x d}}{235} \entry {\code {C-x DEL}}{89, 141} ! \entry {\code {C-x e}}{293} \entry {\code {C-x ESC ESC}}{40} \entry {\code {C-x f}}{145} \entry {\code {C-x h}}{54} *************** *** 288,298 **** \entry {\code {C-x k}}{120} \entry {\code {C-x l}}{143} \entry {\code {C-x m}}{215} ! \entry {\code {C-x n n}}{274} ! \entry {\code {C-x n p}}{274} ! \entry {\code {C-x n w}}{274} \entry {\code {C-x o}}{124} ! \entry {\code {C-x q}}{293} \entry {\code {C-x r f}}{68} \entry {\code {C-x r i}}{67} \entry {\code {C-x r j}}{67} --- 288,298 ---- \entry {\code {C-x k}}{120} \entry {\code {C-x l}}{143} \entry {\code {C-x m}}{215} ! \entry {\code {C-x n n}}{276} ! \entry {\code {C-x n p}}{276} ! \entry {\code {C-x n w}}{276} \entry {\code {C-x o}}{124} ! \entry {\code {C-x q}}{295} \entry {\code {C-x r f}}{68} \entry {\code {C-x r i}}{67} \entry {\code {C-x r j}}{67} *************** *** 324,330 **** \entry {\code {d \r {(Rmail)}}}{224} \entry {\code {DEL}}{25, 57, 89, 133, 160} \entry {\code {\key {DEL} \r {(Dired)}}}{236} ! \entry {\code {DEL \r {(GNUS)}}}{267} \entry {\code {DEL \r {(Rmail)}}}{222} \initial {E} \entry {\code {e \r {(Rmail)}}}{233} --- 324,330 ---- \entry {\code {d \r {(Rmail)}}}{224} \entry {\code {DEL}}{25, 57, 89, 133, 160} \entry {\code {\key {DEL} \r {(Dired)}}}{236} ! \entry {\code {DEL \r {(GNUS)}}}{269} \entry {\code {DEL \r {(Rmail)}}}{222} \initial {E} \entry {\code {e \r {(Rmail)}}}{233} *************** *** 361,372 **** \initial {L} \entry {\code {l \r {(Dired)}}}{244} \entry {\code {L \r {(Dired)}}}{240} ! \entry {\code {l \r {(GNUS Group mode)}}}{266} ! \entry {\code {L \r {(GNUS Group mode)}}}{266} \entry {\code {l \r {(Rmail)}}}{231} \entry {\code {\key {LEFT}}}{26} \entry {\code {LFD}}{133, 164} ! \entry {\code {LFD \r {(Fortran mode)}}}{187} \entry {\code {LFD \r {(\TeX{} mode)}}}{153} \initial {M} \entry {\code {m \r {(Calendar mode)}}}{258} --- 361,372 ---- \initial {L} \entry {\code {l \r {(Dired)}}}{244} \entry {\code {L \r {(Dired)}}}{240} ! \entry {\code {l \r {(GNUS Group mode)}}}{268} ! \entry {\code {L \r {(GNUS Group mode)}}}{268} \entry {\code {l \r {(Rmail)}}}{231} \entry {\code {\key {LEFT}}}{26} \entry {\code {LFD}}{133, 164} ! \entry {\code {LFD \r {(Fortran mode)}}}{188} \entry {\code {LFD \r {(\TeX{} mode)}}}{153} \initial {M} \entry {\code {m \r {(Calendar mode)}}}{258} *************** *** 374,380 **** \entry {\code {m \r {(Dired)}}}{238} \entry {\code {M \r {(Dired)}}}{239} \entry {\code {m \r {(Rmail)}}}{230} ! \entry {\code {M-!}}{270} \entry {\code {M-$}}{91} \entry {\code {M-$ \r {(Dired)}}}{243} \entry {\code {M-%}}{86} --- 374,380 ---- \entry {\code {m \r {(Dired)}}}{238} \entry {\code {M \r {(Dired)}}}{239} \entry {\code {m \r {(Rmail)}}}{230} ! \entry {\code {M-!}}{272} \entry {\code {M-$}}{91} \entry {\code {M-$ \r {(Dired)}}}{243} \entry {\code {M-%}}{86} *************** *** 393,403 **** \entry {\code {M-= \r {(Calendar mode)}}}{250} \entry {\code {M-= \r {(Dired)}}}{242} \entry {\code {M-? \r {(Nroff mode)}}}{157} ! \entry {\code {M-? \r {(Shell mode)}}}{272} \entry {\code {M-{\tt\char'100}}}{140} \entry {\code {M-{\tt\char'173}}}{141} \entry {\code {M-{\tt\char'173} \r {(Calendar mode)}}}{247} ! \entry {\code {M-{\tt\char'174}}}{270} \entry {\code {M-{\tt\char'175}}}{141} \entry {\code {M-{\tt\char'175} \r {(Calendar mode)}}}{247} \entry {\code {M-{\tt\char'176}}}{97} --- 393,403 ---- \entry {\code {M-= \r {(Calendar mode)}}}{250} \entry {\code {M-= \r {(Dired)}}}{242} \entry {\code {M-? \r {(Nroff mode)}}}{157} ! \entry {\code {M-? \r {(Shell mode)}}}{274} \entry {\code {M-{\tt\char'100}}}{140} \entry {\code {M-{\tt\char'173}}}{141} \entry {\code {M-{\tt\char'173} \r {(Calendar mode)}}}{247} ! \entry {\code {M-{\tt\char'174}}}{272} \entry {\code {M-{\tt\char'175}}}{141} \entry {\code {M-{\tt\char'175} \r {(Calendar mode)}}}{247} \entry {\code {M-{\tt\char'176}}}{97} *************** *** 431,450 **** \entry {\code {M-n \r {(minibuffer history)}}}{39} \entry {\code {M-n \r {(Nroff mode)}}}{157} \entry {\code {M-n \r {(Rmail)}}}{223} ! \entry {\code {M-n \r {(Shell mode)}}}{273} \entry {\code {M-p \r {(minibuffer history)}}}{39} \entry {\code {M-p \r {(Nroff mode)}}}{157} \entry {\code {M-p \r {(Rmail)}}}{223} ! \entry {\code {M-p \r {(Shell mode)}}}{273} \entry {\code {M-q}}{144} \entry {\code {M-q \r {(C mode)}}}{186} \entry {\code {M-r}}{26} \entry {\code {M-r \r {(minibuffer history)}}}{40} ! \entry {\code {M-r \r {(Shell mode)}}}{273} ! \entry {\code {M-s \r {(GNUS Summary mode)}}}{267} \entry {\code {M-s \r {(minibuffer history)}}}{40} \entry {\code {M-s \r {(Rmail)}}}{223} ! \entry {\code {M-s \r {(Shell mode)}}}{273} \entry {\code {M-s \r {(Text mode)}}}{144} \entry {\code {M-SPC}}{58} \entry {\code {M-t}}{90, 140} --- 431,450 ---- \entry {\code {M-n \r {(minibuffer history)}}}{39} \entry {\code {M-n \r {(Nroff mode)}}}{157} \entry {\code {M-n \r {(Rmail)}}}{223} ! \entry {\code {M-n \r {(Shell mode)}}}{275} \entry {\code {M-p \r {(minibuffer history)}}}{39} \entry {\code {M-p \r {(Nroff mode)}}}{157} \entry {\code {M-p \r {(Rmail)}}}{223} ! \entry {\code {M-p \r {(Shell mode)}}}{275} \entry {\code {M-q}}{144} \entry {\code {M-q \r {(C mode)}}}{186} \entry {\code {M-r}}{26} \entry {\code {M-r \r {(minibuffer history)}}}{40} ! \entry {\code {M-r \r {(Shell mode)}}}{275} ! \entry {\code {M-s \r {(GNUS Summary mode)}}}{269} \entry {\code {M-s \r {(minibuffer history)}}}{40} \entry {\code {M-s \r {(Rmail)}}}{223} ! \entry {\code {M-s \r {(Shell mode)}}}{275} \entry {\code {M-s \r {(Text mode)}}}{144} \entry {\code {M-SPC}}{58} \entry {\code {M-t}}{90, 140} *************** *** 458,464 **** \entry {\code {M-z}}{59} \entry {\code {MOUSE}}{127} \initial {N} ! \entry {\code {n \r {(GNUS)}}}{267} \entry {\code {n \r {(Rmail)}}}{223} \entry {\code {\key {NEXT}}}{69} \initial {O} --- 458,464 ---- \entry {\code {M-z}}{59} \entry {\code {MOUSE}}{127} \initial {N} ! \entry {\code {n \r {(GNUS)}}}{269} \entry {\code {n \r {(Rmail)}}}{223} \entry {\code {\key {NEXT}}}{69} \initial {O} *************** *** 469,481 **** \initial {P} \entry {\code {p \r {(Calendar mode)}}}{254} \entry {\code {P \r {(Dired)}}}{240} ! \entry {\code {p \r {(GNUS)}}}{267} \entry {\code {p \r {(Rmail)}}}{223} \entry {\code {p d \r {(Calendar mode)}}}{250} \entry {\code {\key {PRIOR}}}{69} \initial {Q} \entry {\code {q \r {(Calendar mode)}}}{250} ! \entry {\code {q \r {(GNUS Group mode)}}}{266} \entry {\code {q \r {(Rmail summary)}}}{233} \entry {\code {q \r {(Rmail)}}}{221} \initial {R} --- 469,481 ---- \initial {P} \entry {\code {p \r {(Calendar mode)}}}{254} \entry {\code {P \r {(Dired)}}}{240} ! \entry {\code {p \r {(GNUS)}}}{269} \entry {\code {p \r {(Rmail)}}}{223} \entry {\code {p d \r {(Calendar mode)}}}{250} \entry {\code {\key {PRIOR}}}{69} \initial {Q} \entry {\code {q \r {(Calendar mode)}}}{250} ! \entry {\code {q \r {(GNUS Group mode)}}}{268} \entry {\code {q \r {(Rmail summary)}}}{233} \entry {\code {q \r {(Rmail)}}}{221} \initial {R} *************** *** 482,499 **** \entry {\code {R \r {(Dired)}}}{239} \entry {\code {r \r {(Rmail)}}}{229} \entry {\code {RET}}{25} ! \entry {\code {\key {RET} \r {(Shell mode)}}}{272} \entry {\code {\key {RIGHT}}}{26} \initial {S} \entry {\code {s \r {(Calendar mode)}}}{258} \entry {\code {S \r {(Calendar mode)}}}{252} \entry {\code {S \r {(Dired)}}}{239} ! \entry {\code {s \r {(GNUS Summary mode)}}}{267} \entry {\code {s \r {(Rmail)}}}{221} \entry {\code {SPC}}{38} \entry {\code {SPC \r {(Calendar mode)}}}{250} \entry {\code {\key {SPC} \r {(Dired)}}}{235} ! \entry {\code {SPC \r {(GNUS)}}}{266} \entry {\code {SPC \r {(Rmail)}}}{222} \initial {T} \entry {\code {t \r {(Rmail)}}}{233} --- 482,499 ---- \entry {\code {R \r {(Dired)}}}{239} \entry {\code {r \r {(Rmail)}}}{229} \entry {\code {RET}}{25} ! \entry {\code {\key {RET} \r {(Shell mode)}}}{274} \entry {\code {\key {RIGHT}}}{26} \initial {S} \entry {\code {s \r {(Calendar mode)}}}{258} \entry {\code {S \r {(Calendar mode)}}}{252} \entry {\code {S \r {(Dired)}}}{239} ! \entry {\code {s \r {(GNUS Summary mode)}}}{269} \entry {\code {s \r {(Rmail)}}}{221} \entry {\code {SPC}}{38} \entry {\code {SPC \r {(Calendar mode)}}}{250} \entry {\code {\key {SPC} \r {(Dired)}}}{235} ! \entry {\code {SPC \r {(GNUS)}}}{268} \entry {\code {SPC \r {(Rmail)}}}{222} \initial {T} \entry {\code {t \r {(Rmail)}}}{233} *************** *** 501,512 **** \entry {\code {TAB \r {(completion)}}}{37} \entry {\code {TAB \r {(Indented Text mode)}}}{148} \entry {\code {TAB \r {(programming modes)}}}{163} ! \entry {\code {\key {TAB} \r {(Shell mode)}}}{272} \entry {\code {\key {TOP}}}{26} \initial {U} \entry {\code {u \r {(Calendar mode)}}}{251} \entry {\code {u \r {(Dired)}}}{236} ! \entry {\code {u \r {(GNUS Group mode)}}}{266} \entry {\code {u \r {(Rmail)}}}{224} \initial {V} \entry {\code {v \r {(Dired)}}}{237} --- 501,512 ---- \entry {\code {TAB \r {(completion)}}}{37} \entry {\code {TAB \r {(Indented Text mode)}}}{148} \entry {\code {TAB \r {(programming modes)}}}{163} ! \entry {\code {\key {TAB} \r {(Shell mode)}}}{274} \entry {\code {\key {TOP}}}{26} \initial {U} \entry {\code {u \r {(Calendar mode)}}}{251} \entry {\code {u \r {(Dired)}}}{236} ! \entry {\code {u \r {(GNUS Group mode)}}}{268} \entry {\code {u \r {(Rmail)}}}{224} \initial {V} \entry {\code {v \r {(Dired)}}}{237} *************** *** 518,521 **** \entry {\code {x \r {(Rmail)}}}{224} \initial {Z} \entry {\code {Z \r {(Dired)}}}{240} ! \entry {\code {z \r {(GNUS Group mode)}}}{266} --- 518,521 ---- \entry {\code {x \r {(Rmail)}}}{224} \initial {Z} \entry {\code {Z \r {(Dired)}}}{240} ! \entry {\code {z \r {(GNUS Group mode)}}}{268} diff -cprP --exclude=*.elc emacs-19.14/man/emacs.texi emacs-19.15/man/emacs.texi *** emacs-19.14/man/emacs.texi Thu Jun 17 19:31:59 1993 --- emacs-19.15/man/emacs.texi Sat Jun 19 17:55:26 1993 *************** *** 110,116 **** Emacs is the extensible, customizable, self-documenting real-time display editor. This Info file describes how to edit with Emacs and some of how to customize it, but not how to extend it. It ! corresponds to GNU Emacs version 19.14. @end ifinfo @menu --- 110,116 ---- Emacs is the extensible, customizable, self-documenting real-time display editor. This Info file describes how to edit with Emacs and some of how to customize it, but not how to extend it. It ! corresponds to GNU Emacs version 19.15. @end ifinfo @menu diff -cprP --exclude=*.elc emacs-19.14/man/emacs.vrs emacs-19.15/man/emacs.vrs *** emacs-19.14/man/emacs.vrs Wed Jun 9 11:02:42 1993 --- emacs-19.15/man/emacs.vrs Fri Jun 18 15:46:35 1993 *************** *** 27,36 **** \entry {\code {c-indent-level}}{167} \entry {\code {c-label-offset}}{168} \entry {\code {c-mode-hook}}{160} ! \entry {\code {c-mode-map}}{295} \entry {\code {c-tab-always-indent}}{166} \entry {\code {calendar-daylight-savings-ends}}{264} \entry {\code {calendar-daylight-savings-starts}}{264} \entry {\code {calendar-daylight-time-zone-name}}{252} \entry {\code {calendar-latitude}}{252} \entry {\code {calendar-location-name}}{252} --- 27,38 ---- \entry {\code {c-indent-level}}{167} \entry {\code {c-label-offset}}{168} \entry {\code {c-mode-hook}}{160} ! \entry {\code {c-mode-map}}{297} \entry {\code {c-tab-always-indent}}{166} \entry {\code {calendar-daylight-savings-ends}}{264} \entry {\code {calendar-daylight-savings-starts}}{264} + \entry {\code {calendar-daylight-savings-switchover-time}}{264} + \entry {\code {calendar-daylight-time-offset}}{264} \entry {\code {calendar-daylight-time-zone-name}}{252} \entry {\code {calendar-latitude}}{252} \entry {\code {calendar-location-name}}{252} *************** *** 40,46 **** \entry {\code {case-fold-search}}{84} \entry {\code {case-replace}}{85} \entry {\code {command-history}}{41} ! \entry {\code {command-line-args}}{320} \entry {\code {comment-column}}{171} \entry {\code {comment-end}}{171} \entry {\code {comment-indent-function}}{172} --- 42,48 ---- \entry {\code {case-fold-search}}{84} \entry {\code {case-replace}}{85} \entry {\code {command-history}}{41} ! \entry {\code {command-line-args}}{322} \entry {\code {comment-column}}{171} \entry {\code {comment-end}}{171} \entry {\code {comment-indent-function}}{172} *************** *** 54,61 **** \entry {\code {completion-auto-help}}{39} \entry {\code {completion-ignored-extensions}}{39} \entry {\code {ctl-arrow}}{73} ! \entry {\code {ctl-x-4-map}}{295} ! \entry {\code {ctl-x-map}}{295} \initial {D} \entry {\code {dbx-mode-hook}}{199} \entry {\code {default-directory}}{93} --- 56,63 ---- \entry {\code {completion-auto-help}}{39} \entry {\code {completion-ignored-extensions}}{39} \entry {\code {ctl-arrow}}{73} ! \entry {\code {ctl-x-4-map}}{297} ! \entry {\code {ctl-x-map}}{297} \initial {D} \entry {\code {dbx-mode-hook}}{199} \entry {\code {default-directory}}{93} *************** *** 74,82 **** \entry {\code {emerge-combine-versions-template}}{185} \entry {\code {emerge-startup-hook}}{185} \entry {\code {enable-recursive-minibuffers}}{37} ! \entry {\code {esc-map}}{295} \entry {\code {european-calendar-style}}{260} ! \entry {\code {explicit-shell-file-name}}{271} \initial {F} \entry {\code {fill-column}}{145} \entry {\code {fill-prefix}}{146} --- 76,84 ---- \entry {\code {emerge-combine-versions-template}}{185} \entry {\code {emerge-startup-hook}}{185} \entry {\code {enable-recursive-minibuffers}}{37} ! \entry {\code {esc-map}}{297} \entry {\code {european-calendar-style}}{260} ! \entry {\code {explicit-shell-file-name}}{273} \initial {F} \entry {\code {fill-column}}{145} \entry {\code {fill-prefix}}{146} *************** *** 85,111 **** \entry {\code {find-file-not-found-hooks}}{96} \entry {\code {find-file-run-dired}}{95} \entry {\code {find-file-visit-truename}}{105} ! \entry {\code {fortran-analyze-depth}}{188} \entry {\code {fortran-break-before-delimiters}}{192} ! \entry {\code {fortran-check-all-num\dots {}}}{189} ! \entry {\code {fortran-column-ruler}}{192} \entry {\code {fortran-comment-indent-char}}{191} \entry {\code {fortran-comment-indent-style}}{191} \entry {\code {fortran-comment-line-extra-indent}}{191} ! \entry {\code {fortran-comment-region}}{191} ! \entry {\code {fortran-continuation-indent}}{189} \entry {\code {fortran-continuation-string}}{189} ! \entry {\code {fortran-do-indent}}{189} \entry {\code {fortran-electric-line-number}}{189} ! \entry {\code {fortran-if-indent}}{189} \entry {\code {fortran-line-number-indent}}{189} ! \entry {\code {fortran-minimum-statement-indent\dots {}}}{189} ! \entry {\code {fortran-structure-indent}}{189} ! \entry {\code {fortran-tab-mode-default}}{188} \initial {G} \entry {\code {gdb-mode-hook}}{199} \initial {H} ! \entry {\code {help-map}}{295} \initial {I} \entry {\code {indent-tabs-mode}}{137} \entry {\code {indent-tabs-mode \r {(Fortran mode)}}}{188} --- 87,113 ---- \entry {\code {find-file-not-found-hooks}}{96} \entry {\code {find-file-run-dired}}{95} \entry {\code {find-file-visit-truename}}{105} ! \entry {\code {fortran-analyze-depth}}{189} \entry {\code {fortran-break-before-delimiters}}{192} ! \entry {\code {fortran-check-all-num\dots {}}}{190} ! \entry {\code {fortran-column-ruler}}{193} \entry {\code {fortran-comment-indent-char}}{191} \entry {\code {fortran-comment-indent-style}}{191} \entry {\code {fortran-comment-line-extra-indent}}{191} ! \entry {\code {fortran-comment-region}}{192} ! \entry {\code {fortran-continuation-indent}}{190} \entry {\code {fortran-continuation-string}}{189} ! \entry {\code {fortran-do-indent}}{190} \entry {\code {fortran-electric-line-number}}{189} ! \entry {\code {fortran-if-indent}}{190} \entry {\code {fortran-line-number-indent}}{189} ! \entry {\code {fortran-minimum-statement-indent\dots {}}}{190} ! \entry {\code {fortran-structure-indent}}{190} ! \entry {\code {fortran-tab-mode-default}}{189} \initial {G} \entry {\code {gdb-mode-hook}}{199} \initial {H} ! \entry {\code {help-map}}{297} \initial {I} \entry {\code {indent-tabs-mode}}{137} \entry {\code {indent-tabs-mode \r {(Fortran mode)}}}{188} *************** *** 130,141 **** \entry {\code {lisp-indent-offset}}{165} \entry {\code {lisp-interaction-mode-hook}}{160} \entry {\code {lisp-mode-hook}}{160} ! \entry {\code {lisp-mode-map}}{295} \entry {\code {list-directory-brief-switches}}{115} \entry {\code {list-directory-verbose-switches}}{115} \entry {\code {load-path}}{201} \entry {\code {local-write-file-hooks}}{98} ! \entry {\code {lpr-switches}}{275} \initial {M} \entry {\code {mail-aliases}}{218} \entry {\code {mail-archive-file-name}}{217} --- 132,143 ---- \entry {\code {lisp-indent-offset}}{165} \entry {\code {lisp-interaction-mode-hook}}{160} \entry {\code {lisp-mode-hook}}{160} ! \entry {\code {lisp-mode-map}}{297} \entry {\code {list-directory-brief-switches}}{115} \entry {\code {list-directory-verbose-switches}}{115} \entry {\code {load-path}}{201} \entry {\code {local-write-file-hooks}}{98} ! \entry {\code {lpr-switches}}{277} \initial {M} \entry {\code {mail-aliases}}{218} \entry {\code {mail-archive-file-name}}{217} *************** *** 148,160 **** \entry {\code {mail-yank-prefix}}{220} \entry {\code {make-backup-files}}{99} \entry {\code {mark-ring}}{55} ! \entry {\code {mark-ring-max}}{54} ! \entry {\code {minibuffer-local-completion-map}}{296} ! \entry {\code {minibuffer-local-map}}{296} ! \entry {\code {minibuffer-local-must-match-map}}{296} ! \entry {\code {minibuffer-local-ns-map}}{296} \entry {\code {mode-line-inverse-video}}{72} ! \entry {\code {mode-specific-map}}{295} \entry {\code {muddle-mode-hook}}{160} \initial {N} \entry {\code {next-line-add-newlines}}{27} --- 150,162 ---- \entry {\code {mail-yank-prefix}}{220} \entry {\code {make-backup-files}}{99} \entry {\code {mark-ring}}{55} ! \entry {\code {mark-ring-max}}{55} ! \entry {\code {minibuffer-local-completion-map}}{298} ! \entry {\code {minibuffer-local-map}}{298} ! \entry {\code {minibuffer-local-must-match-map}}{298} ! \entry {\code {minibuffer-local-ns-map}}{298} \entry {\code {mode-line-inverse-video}}{72} ! \entry {\code {mode-specific-map}}{297} \entry {\code {muddle-mode-hook}}{160} \initial {N} \entry {\code {next-line-add-newlines}}{27} *************** *** 188,199 **** \entry {\code {search-slow-window-lines}}{77} \entry {\code {selective-display-ellipses}}{73} \entry {\code {sentence-end}}{141} ! \entry {\code {shell-cd-regexp}}{271} ! \entry {\code {shell-file-name}}{270} ! \entry {\code {shell-popd-regexp}}{271} ! \entry {\code {shell-prompt-pattern}}{272} ! \entry {\code {shell-pushd-regexp}}{271} ! \entry {\code {shell-set-directory-error-hook}}{271} \entry {\code {slitex-mode-hook}}{156} \entry {\code {slitex-run-command}}{155} \entry {\code {split-window-keep-point}}{124} --- 190,201 ---- \entry {\code {search-slow-window-lines}}{77} \entry {\code {selective-display-ellipses}}{73} \entry {\code {sentence-end}}{141} ! \entry {\code {shell-cd-regexp}}{273} ! \entry {\code {shell-file-name}}{272} ! \entry {\code {shell-popd-regexp}}{273} ! \entry {\code {shell-prompt-pattern}}{274} ! \entry {\code {shell-pushd-regexp}}{273} ! \entry {\code {shell-set-directory-error-hook}}{273} \entry {\code {slitex-mode-hook}}{156} \entry {\code {slitex-run-command}}{155} \entry {\code {split-window-keep-point}}{124} *************** *** 201,208 **** \entry {\code {tab-stop-list}}{137} \entry {\code {tab-width}}{73} \entry {\code {tags-file-name}}{176} ! \entry {\code {term-file-prefix}}{306} ! \entry {\code {term-setup-hook}}{306} \entry {\code {tex-bibtex-command}}{156} \entry {\code {tex-default-mode}}{152} \entry {\code {tex-directory}}{155} --- 203,210 ---- \entry {\code {tab-stop-list}}{137} \entry {\code {tab-width}}{73} \entry {\code {tags-file-name}}{176} ! \entry {\code {term-file-prefix}}{308} ! \entry {\code {term-setup-hook}}{308} \entry {\code {tex-bibtex-command}}{156} \entry {\code {tex-default-mode}}{152} \entry {\code {tex-directory}}{155} diff -cprP --exclude=*.elc emacs-19.14/oldXMenu/ChangeLog emacs-19.15/oldXMenu/ChangeLog *** emacs-19.14/oldXMenu/ChangeLog Thu Jun 17 19:43:54 1993 --- emacs-19.15/oldXMenu/ChangeLog Sat Jun 19 17:57:33 1993 *************** *** 1,3 **** --- 1,14 ---- + Sat Jun 19 17:14:27 1993 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu) + + * version 19.15 released. + + Fri Jun 18 12:31:02 1993 Jim Blandy (jimb@geech.gnu.ai.mit.edu) + + * Makefile.in (ALL_CFLAGS): Always #define EMACS_BITMAP_FILES. + This should make it work under any circumstances. + + * Makefile.in (mostlyclean): Use rm -f. + Thu Jun 17 19:29:56 1993 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu) * Version 19.14 released. diff -cprP --exclude=*.elc emacs-19.14/oldXMenu/Makefile.in emacs-19.15/oldXMenu/Makefile.in *** emacs-19.14/oldXMenu/Makefile.in Thu Jun 17 15:04:00 1993 --- emacs-19.15/oldXMenu/Makefile.in Fri Jun 18 20:05:16 1993 *************** *** 79,85 **** XDelAssoc.o XLookAssoc.o XCrAssoc.o XDestAssoc.o XMakeAssoc.o ALL_CFLAGS=$(C_SWITCH_SITE) $(C_SWITCH_SYSTEM) $(C_SWITCH_X_SITE) \ ! $(C_SWITCH_MACHINE) $(CPPFLAGS) $(CFLAGS) .c.o: $(CC) -c ${ALL_CFLAGS} $< --- 79,85 ---- XDelAssoc.o XLookAssoc.o XCrAssoc.o XDestAssoc.o XMakeAssoc.o ALL_CFLAGS=$(C_SWITCH_SITE) $(C_SWITCH_SYSTEM) $(C_SWITCH_X_SITE) \ ! $(C_SWITCH_MACHINE) $(CPPFLAGS) $(CFLAGS) -DEMACS_BITMAP_FILES .c.o: $(CC) -c ${ALL_CFLAGS} $< *************** libXMenu11.a: $(OBJS) $(EXTRA) *** 95,101 **** FRC.mostlyclean: mostlyclean: FRC.mostlyclean ! rm libXMenu11.a ${OBJS} ${EXTRA} clean: mostlyclean distclean: clean realclean: distclean --- 95,101 ---- FRC.mostlyclean: mostlyclean: FRC.mostlyclean ! rm -f libXMenu11.a ${OBJS} ${EXTRA} clean: mostlyclean distclean: clean realclean: distclean diff -cprP --exclude=*.elc emacs-19.14/src/ChangeLog emacs-19.15/src/ChangeLog *** emacs-19.14/src/ChangeLog Thu Jun 17 19:44:07 1993 --- emacs-19.15/src/ChangeLog Sat Jun 19 17:57:44 1993 *************** *** 1,3 **** --- 1,67 ---- + Sat Jun 19 17:14:27 1993 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu) + + * version 19.15 released. + + Sat Jun 19 16:24:58 1993 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu) + + * puresize.h (PURESIZE): Up this to 205000 for MULTI_FRAME Emaces, + and 190000 for non-MULTI_FRAME Emaces. + + * xfaces.c (recompute_basic_faces): This shouldn't be declared static. + + * xrdb.c (get_user_db): Some NCD xterms seem to hang in + XScreenResourceString. Consult the ServerVendor and VendorRelease + variables to see if we're talking to such a server. + + * xterm.c (XTread_socket): Never treat a modifier key as a + non_ascii_keystroke. + + * emacs.c (Fkill_emacs): Pass third argument to shut_down_emacs. + * lisp.h (shut_down_emacs): Doc fix. + + Fri Jun 18 11:05:46 1993 Jim Blandy (jimb@geech.gnu.ai.mit.edu) + + * frame.c (Fmake_frame_visible): Make this interactively callable; + frames can accept input while iconified, so it makes sense to put + this on a key. + + * xfaces.c: Add forward declaration for recompute_basic_faces. + + * fileio.c (Fset_visited_file_modtime): We're only passing two + arguments to the file name handler; use call2, not call3. + + Changes for Irix 4.0, tested this time: + * s/irix4-0.h: Get rid of our fake definitions for setpgrp and + getpgrp. + * callproc.c (Fcall_process): Go ahead and use the USG calling + convention for setpgrp. + * ymakefile (pre-crt0.o): Add rule for this. Perhaps it will help + separate-source-directory compilation. + * emacs.c (shut_down_emacs): Some USG systems #define + EMACS_HAVE_TTY_PGRP; call getpgrp as appropriate for such systems. + * sysdep.c (sys_suspend): Call getpgrp as appropriate for USG and + non-USG. + + * sysdep.c (rename): Make arguments const. autoconf #defines + const away on systems which don't have it; any system with + prototypes will declare the arguments const (the ones to which I + have access do); and systems without prototypes won't notice. + + * process.c [IRIX] (create_process): Don't put child in process + group zero before opening the tty; Irix is like USG in this + regard. + + * s/isc2-2.h, s/linux.h, s/usg5-4.h, m/alliant-2800.h, m/convex.h, + m/pfa50.h: Remove #definition of HAVE_CLOSEDIR; autoconf figures + this out. + + * xfns.c: Always #include "bitmaps/gray.xbm"; the bitmaps seem to + be missing on some systems, and there's no point in having + configure check; it should work fine to always use our copy. + + * minibuf.c (Fread_minibuffer): Add missing semicolon after + CHECK_STRING macro. + Thu Jun 17 19:29:56 1993 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu) * Version 19.14 released. diff -cprP --exclude=*.elc emacs-19.14/src/puresize.h emacs-19.15/src/puresize.h *** emacs-19.14/src/puresize.h Sat Jun 5 13:03:58 1993 --- emacs-19.15/src/puresize.h Sat Jun 19 18:53:13 1993 *************** *** 29,37 **** #ifndef PURESIZE #ifdef MULTI_FRAME ! #define PURESIZE 200000 #else ! #define PURESIZE 185000 #endif #endif --- 29,37 ---- #ifndef PURESIZE #ifdef MULTI_FRAME ! #define PURESIZE 205000 #else ! #define PURESIZE 190000 #endif #endif diff -cprP --exclude=*.elc emacs-19.14/src/callproc.c emacs-19.15/src/callproc.c *** emacs-19.14/src/callproc.c Thu Jun 17 19:22:39 1993 --- emacs-19.15/src/callproc.c Fri Jun 18 18:17:00 1993 *************** *** 255,261 **** { if (fd[0] >= 0) close (fd[0]); ! #if defined (USG) && !defined (IRIX) setpgrp (); #else setpgrp (pid, pid); --- 255,261 ---- { if (fd[0] >= 0) close (fd[0]); ! #ifdef USG setpgrp (); #else setpgrp (pid, pid); diff -cprP --exclude=*.elc emacs-19.14/src/emacs.c emacs-19.15/src/emacs.c *** emacs-19.14/src/emacs.c Thu Jun 17 00:37:20 1993 --- emacs-19.15/src/emacs.c Sat Jun 19 16:24:10 1993 *************** *** 649,655 **** stop_vms_input (); #endif */ ! shut_down_emacs (0, 0); exit ((XTYPE (arg) == Lisp_Int) ? XINT (arg) #ifdef VMS --- 649,655 ---- stop_vms_input (); #endif */ ! shut_down_emacs (0, 0, STRINGP (arg) ? arg : Qnil); exit ((XTYPE (arg) == Lisp_Int) ? XINT (arg) #ifdef VMS *************** shut_down_emacs (sig, no_x, stuff) *** 681,689 **** /* If we are controlling the terminal, reset terminal modes */ #ifdef EMACS_HAVE_TTY_PGRP { int tpgrp; if (EMACS_GET_TTY_PGRP (0, &tpgrp) != -1 ! && tpgrp == getpgrp (0)) { fflush (stdout); reset_sys_modes (); --- 681,694 ---- /* If we are controlling the terminal, reset terminal modes */ #ifdef EMACS_HAVE_TTY_PGRP { + #ifdef USG + int pgrp = getpgrp (); + #else + int pgrp = getpgrp (0); + #endif int tpgrp; if (EMACS_GET_TTY_PGRP (0, &tpgrp) != -1 ! && tpgrp == pgrp) { fflush (stdout); reset_sys_modes (); diff -cprP --exclude=*.elc emacs-19.14/src/fileio.c emacs-19.15/src/fileio.c *** emacs-19.14/src/fileio.c Wed Jun 16 22:28:07 1993 --- emacs-19.15/src/fileio.c Fri Jun 18 21:04:25 1993 *************** *** 2941,2947 **** handler = Ffind_file_name_handler (filename); if (!NILP (handler)) /* The handler can find the file name the same way we did. */ ! return call3 (handler, Qset_visited_file_modtime, Qnil); else if (stat (XSTRING (filename)->data, &st) >= 0) current_buffer->modtime = st.st_mtime; } --- 2941,2947 ---- handler = Ffind_file_name_handler (filename); if (!NILP (handler)) /* The handler can find the file name the same way we did. */ ! return call2 (handler, Qset_visited_file_modtime, Qnil); else if (stat (XSTRING (filename)->data, &st) >= 0) current_buffer->modtime = st.st_mtime; } diff -cprP --exclude=*.elc emacs-19.14/src/frame.c emacs-19.15/src/frame.c *** emacs-19.14/src/frame.c Wed Jun 16 17:18:49 1993 --- emacs-19.15/src/frame.c Fri Jun 18 21:47:06 1993 *************** *** 791,797 **** } DEFUN ("make-frame-visible", Fmake_frame_visible, Smake_frame_visible, ! 0, 1, 0, "Make the frame FRAME visible (assuming it is an X-window).\n\ Also raises the frame so that nothing obscures it.\n\ If omitted, FRAME defaults to the currently selected frame.") --- 791,797 ---- } DEFUN ("make-frame-visible", Fmake_frame_visible, Smake_frame_visible, ! 0, 1, "", "Make the frame FRAME visible (assuming it is an X-window).\n\ Also raises the frame so that nothing obscures it.\n\ If omitted, FRAME defaults to the currently selected frame.") diff -cprP --exclude=*.elc emacs-19.14/src/lisp.h emacs-19.15/src/lisp.h *** emacs-19.14/src/lisp.h Thu Jun 17 00:11:37 1993 --- emacs-19.15/src/lisp.h Sat Jun 19 16:24:44 1993 *************** *** 1257,1263 **** /* defined in emacs.c */ extern Lisp_Object decode_env_path (); extern Lisp_Object Vinvocation_name; ! void shut_down_emacs ( /* int signal, int no_x */ ); /* Nonzero means don't do interactive redisplay and don't change tty modes */ extern int noninteractive; /* Nonzero means don't do use window-system-specific display code */ --- 1257,1263 ---- /* defined in emacs.c */ extern Lisp_Object decode_env_path (); extern Lisp_Object Vinvocation_name; ! void shut_down_emacs ( /* int signal, int no_x, Lisp_Object stuff */ ); /* Nonzero means don't do interactive redisplay and don't change tty modes */ extern int noninteractive; /* Nonzero means don't do use window-system-specific display code */ diff -cprP --exclude=*.elc emacs-19.14/src/m/alliant-2800.h emacs-19.15/src/m/alliant-2800.h *** emacs-19.14/src/m/alliant-2800.h Thu Jun 17 21:09:03 1993 --- emacs-19.15/src/m/alliant-2800.h Fri Jun 18 14:56:29 1993 *************** *** 3,22 **** This file is part of GNU Emacs. GNU Emacs is distributed in the hope that it will be useful, ! but WITHOUT ANY WARRANTY. No author or distributor ! accepts responsibility to anyone for the consequences of using it ! or for whether it serves any particular purpose or works at all, ! unless he says so in writing. Refer to the GNU Emacs General Public ! License for full details. ! ! Everyone is granted permission to copy, modify and redistribute ! GNU Emacs, but only under the conditions described in the ! GNU Emacs General Public License. A copy of this license is ! supposed to have been given to you along with GNU Emacs so you ! can know your rights and responsibilities. It should be in a ! file named COPYING. Among other things, the copyright notice ! and this notice must be preserved on all copies. */ /* The following line tells the configuration script what sort of --- 3,21 ---- This file is part of GNU Emacs. + GNU Emacs is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2, or (at your option) + any later version. + GNU Emacs is distributed in the hope that it will be useful, ! but WITHOUT ANY WARRANTY; without even the implied warranty of ! MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ! GNU General Public License for more details. ! ! You should have received a copy of the GNU General Public License ! along with GNU Emacs; see the file COPYING. If not, write to ! the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ /* The following line tells the configuration script what sort of *************** unexec_text_start = hdr.a_text_addr;} *** 142,145 **** /* POSIX Compatibility */ /* Use System V.4 style getdents/readdir for 2.2 and up. */ #define SYSV_SYSTEM_DIR - #define HAVE_CLOSEDIR --- 141,143 ---- diff -cprP --exclude=*.elc emacs-19.14/src/m/convex.h emacs-19.15/src/m/convex.h *** emacs-19.14/src/m/convex.h Sat Jun 12 17:55:20 1993 --- emacs-19.15/src/m/convex.h Fri Jun 18 14:56:33 1993 *************** *** 136,142 **** /* Use . */ #define SYSV_SYSTEM_DIR - #define HAVE_CLOSEDIR #ifdef _POSIX_SOURCE --- 136,141 ---- diff -cprP --exclude=*.elc emacs-19.14/src/m/news-risc.h emacs-19.15/src/m/news-risc.h *** emacs-19.14/src/m/news-risc.h Mon Jun 14 11:16:46 1993 --- emacs-19.15/src/m/news-risc.h Fri Jun 18 11:48:22 1993 *************** *** 1,7 **** /* news-risc.h is for the "RISC News". */ #include "mips.h" - #undef LIBS_MACHINE /* The following line tells the configuration script what sort of operating system this machine is likely to run. --- 1,6 ---- *************** *** 23,27 **** /* We have no mode_t. */ #define NO_MODE_T ! /* Don't use the definitoion in m/mips.h. */ #undef LINKER --- 22,27 ---- /* We have no mode_t. */ #define NO_MODE_T ! /* Don't use the definitions in m/mips.h. */ #undef LINKER + #undef LIBS_MACHINE diff -cprP --exclude=*.elc emacs-19.14/src/m/pfa50.h emacs-19.15/src/m/pfa50.h *** emacs-19.14/src/m/pfa50.h Thu Jun 17 21:17:22 1993 --- emacs-19.15/src/m/pfa50.h Fri Jun 18 14:56:37 1993 *************** *** 94,100 **** #define HAVE_SOCKETS /* SX/A use SystemV style getdents/readdir. */ - #define HAVE_CLOSEDIR /* SX/A does not have sigblock(2) */ #define sigblock(mask) (0) --- 94,99 ---- diff -cprP --exclude=*.elc emacs-19.14/src/minibuf.c emacs-19.15/src/minibuf.c *** emacs-19.14/src/minibuf.c Sat Jun 12 13:15:33 1993 --- emacs-19.15/src/minibuf.c Fri Jun 18 11:05:42 1993 *************** *** 415,421 **** { CHECK_STRING (prompt, 0); if (!NILP (initial_contents)) ! CHECK_STRING (initial_contents, 1) return read_minibuf (Vminibuffer_local_map, initial_contents, prompt, Qnil, 1, Qminibuffer_history, make_number (0)); } --- 415,421 ---- { CHECK_STRING (prompt, 0); if (!NILP (initial_contents)) ! CHECK_STRING (initial_contents, 1); return read_minibuf (Vminibuffer_local_map, initial_contents, prompt, Qnil, 1, Qminibuffer_history, make_number (0)); } diff -cprP --exclude=*.elc emacs-19.14/src/process.c emacs-19.15/src/process.c *** emacs-19.14/src/process.c Thu Jun 17 18:02:18 1993 --- emacs-19.15/src/process.c Fri Jun 18 19:32:14 1993 *************** *** 1282,1288 **** int j = open ("/dev/tty", O_RDWR, 0); ioctl (j, TIOCNOTTY, 0); close (j); ! #if !defined (USG) || defined (IRIX) /* In order to get a controlling terminal on some versions of BSD, it is necessary to put the process in pgrp 0 before it opens the terminal. */ --- 1282,1288 ---- int j = open ("/dev/tty", O_RDWR, 0); ioctl (j, TIOCNOTTY, 0); close (j); ! #ifndef USG /* In order to get a controlling terminal on some versions of BSD, it is necessary to put the process in pgrp 0 before it opens the terminal. */ diff -cprP --exclude=*.elc emacs-19.14/src/s/irix4-0.h emacs-19.15/src/s/irix4-0.h *** emacs-19.14/src/s/irix4-0.h Thu Jun 17 00:27:50 1993 --- emacs-19.15/src/s/irix4-0.h Fri Jun 18 11:17:55 1993 *************** *** 50,59 **** strcpy (pty_name, name); \ } - /* Use the BSD versions of the getpgrp and setpgrp functions. */ - #define setpgrp(pid, pgrp) BSDsetpgrp((pid), (pgrp)) - #define getpgrp(pid) BSDgetpgrp(pid) - /* jpff@maths.bath.ac.uk reports `struct exception' is not defined on this system, so inhibit use of matherr. */ #define NO_MATHERR --- 50,55 ---- diff -cprP --exclude=*.elc emacs-19.14/src/s/isc2-2.h emacs-19.15/src/s/isc2-2.h *** emacs-19.14/src/s/isc2-2.h Sun May 23 18:01:17 1993 --- emacs-19.15/src/s/isc2-2.h Fri Jun 18 14:56:19 1993 *************** *** 23,29 **** #define NO_FCHMOD #define HAVE_PTYS - #define HAVE_CLOSEDIR #define MAXNAMLEN 512 #define O_NDELAY O_NONBLOCK #define MEMORY_IN_STRING_H --- 23,28 ---- diff -cprP --exclude=*.elc emacs-19.14/src/s/linux.h emacs-19.15/src/s/linux.h *** emacs-19.14/src/s/linux.h Mon Jun 14 11:34:56 1993 --- emacs-19.15/src/s/linux.h Fri Jun 18 14:56:22 1993 *************** *** 182,188 **** #if 0 /* autoconf should take care of this. */ #define HAVE_RANDOM /* is builtin */ #endif - #define HAVE_CLOSEDIR #define HAVE_GETPAGESIZE #define HAVE_VFORK #define HAVE_SYS_SIGLIST --- 182,187 ---- diff -cprP --exclude=*.elc emacs-19.14/src/s/usg5-4.h emacs-19.15/src/s/usg5-4.h *** emacs-19.14/src/s/usg5-4.h Sat Jun 12 18:01:27 1993 --- emacs-19.15/src/s/usg5-4.h Fri Jun 18 14:56:25 1993 *************** *** 87,93 **** #define HAVE_SELECT #define HAVE_TIMEVAL - #define HAVE_CLOSEDIR /* *defines* stat(2) as a static function. If "static" * is blank, then many files will have a public definition for stat(2). --- 87,92 ---- diff -cprP --exclude=*.elc emacs-19.14/src/sysdep.c emacs-19.15/src/sysdep.c *** emacs-19.14/src/sysdep.c Thu Jun 17 00:48:31 1993 --- emacs-19.15/src/sysdep.c Fri Jun 18 19:54:47 1993 *************** *** 571,577 **** #else #ifdef SIGTSTP ! EMACS_KILLPG (getpgrp (0), SIGTSTP); #else /* No SIGTSTP */ #ifdef USG_JOBCTRL /* If you don't know what this is don't mess with it */ --- 571,584 ---- #else #ifdef SIGTSTP ! { ! #ifdef USG ! int pgrp = getpgrp (); ! #else ! int pgrp = getpgrp (0); ! #endif ! EMACS_KILLPG (pgrp, SIGTSTP); ! } #else /* No SIGTSTP */ #ifdef USG_JOBCTRL /* If you don't know what this is don't mess with it */ *************** getwd (pathname) *** 2687,2694 **** #ifndef HAVE_RENAME rename (from, to) ! char *from; ! char *to; { if (access (from, 0) == 0) { --- 2694,2701 ---- #ifndef HAVE_RENAME rename (from, to) ! const char *from; ! const char *to; { if (access (from, 0) == 0) { diff -cprP --exclude=*.elc emacs-19.14/src/xfaces.c emacs-19.15/src/xfaces.c *** emacs-19.14/src/xfaces.c Thu Jun 17 17:20:23 1993 --- emacs-19.15/src/xfaces.c Sat Jun 19 17:28:07 1993 *************** *** 157,167 **** Lisp_Object Qface, Qwindow, Qpriority; ! static void build_face (); ! int face_name_id_number (); ! struct face *intern_face (); ! static void ensure_face_ready (); /* Allocating, copying, and comparing struct faces. */ --- 157,168 ---- Lisp_Object Qface, Qwindow, Qpriority; ! static void build_face ( /* FRAME_PTR, struct face * */ ); ! int face_name_id_number ( /* FRAME_PTR, Lisp_Object name */ ); ! struct face *intern_face ( /* FRAME_PTR, struct face * */ ); ! static void ensure_face_ready ( /* FRAME_PTR, int id */ ); ! void recompute_basic_faces ( /* FRAME_PTR f */ ); /* Allocating, copying, and comparing struct faces. */ diff -cprP --exclude=*.elc emacs-19.14/src/xfns.c emacs-19.15/src/xfns.c *** emacs-19.14/src/xfns.c Sat Jun 12 13:23:10 1993 --- emacs-19.15/src/xfns.c Fri Jun 18 12:31:53 1993 *************** *** 39,45 **** extern void abort (); #ifndef VMS ! #ifdef EMACS_BITMAP_FILES #include "bitmaps/gray.xbm" #else #include --- 39,45 ---- extern void abort (); #ifndef VMS ! #if 1 /* Used to be #ifdef EMACS_BITMAP_FILES, but this should always work. */ #include "bitmaps/gray.xbm" #else #include diff -cprP --exclude=*.elc emacs-19.14/src/xrdb.c emacs-19.15/src/xrdb.c *** emacs-19.14/src/xrdb.c Thu Jun 10 07:51:55 1993 --- emacs-19.15/src/xrdb.c Sat Jun 19 16:18:50 1993 *************** *** 316,325 **** #ifdef XlibSpecificationRelease #if XlibSpecificationRelease >= 5 ! /* Get the screen-specific resources too. */ ! xdefs = XScreenResourceString (DefaultScreenOfDisplay (display)); ! if (xdefs != NULL) ! XrmMergeDatabases (XrmGetStringDatabase (xdefs), &db); #endif #endif --- 316,331 ---- #ifdef XlibSpecificationRelease #if XlibSpecificationRelease >= 5 ! /* Some NCD xterms seem to hang on InternAtom. Problem has been ! verified on machines with a VendorRelease value of 2000. */ ! if (strcmp(ServerVendor(display), "Network Computing Devices Inc.") || ! VendorRelease(display) > 2000) ! { ! /* Get the screen-specific resources too. */ ! xdefs = XScreenResourceString (DefaultScreenOfDisplay (display)); ! if (xdefs != NULL) ! XrmMergeDatabases (XrmGetStringDatabase (xdefs), &db); ! } #endif #endif diff -cprP --exclude=*.elc emacs-19.14/src/xterm.c emacs-19.15/src/xterm.c *** emacs-19.14/src/xterm.c Sat Jun 12 22:04:37 1993 --- emacs-19.15/src/xterm.c Sat Jun 19 17:01:00 1993 *************** *** 2893,2914 **** if (numchars > 1) { ! if ((keysym >= XK_BackSpace && keysym <= XK_Escape) ! || keysym == XK_Delete ! || IsCursorKey (keysym) /* 0xff50 <= x < 0xff60 */ ! || IsMiscFunctionKey (keysym) /* 0xff60 <= x < VARIES */ #ifdef HPUX ! /* This recognizes the "extended function keys". ! It seems there's no cleaner way. ! Test IsModifierKey to avoid handling mode_switch ! incorrectly. */ ! || (!IsModifierKey (orig_keysym) ! && (unsigned) (keysym) >= XK_Select ! && (unsigned)(keysym) < XK_KP_Space) #endif ! || IsKeypadKey (keysym) /* 0xff80 <= x < 0xffbe */ ! || IsFunctionKey (keysym) /* 0xffbe <= x < 0xffe1 */ ! || x_is_vendor_fkey (orig_keysym)) /* wherever */ { if (temp_index == sizeof temp_buffer / sizeof (short)) temp_index = 0; --- 2893,2914 ---- if (numchars > 1) { ! if (((keysym >= XK_BackSpace && keysym <= XK_Escape) ! || keysym == XK_Delete ! || IsCursorKey (keysym) /* 0xff50 <= x < 0xff60 */ ! || IsMiscFunctionKey (keysym) /* 0xff60 <= x < VARIES */ #ifdef HPUX ! /* This recognizes the "extended function keys". ! It seems there's no cleaner way. ! Test IsModifierKey to avoid handling mode_switch ! incorrectly. */ ! || ((unsigned) (keysym) >= XK_Select ! && (unsigned)(keysym) < XK_KP_Space) #endif ! || IsKeypadKey (keysym) /* 0xff80 <= x < 0xffbe */ ! || IsFunctionKey (keysym) /* 0xffbe <= x < 0xffe1 */ ! || x_is_vendor_fkey (orig_keysym)) ! && ! IsModifierKey (orig_keysym)) /* wherever */ { if (temp_index == sizeof temp_buffer / sizeof (short)) temp_index = 0; diff -cprP --exclude=*.elc emacs-19.14/src/ymakefile emacs-19.15/src/ymakefile *** emacs-19.14/src/ymakefile Thu Jun 17 15:02:42 1993 --- emacs-19.15/src/ymakefile Fri Jun 18 18:20:46 1993 *************** *** 653,658 **** --- 653,659 ---- casetab.o : casetab.c buffer.h $(config_h) cm.o : cm.c cm.h termhooks.h $(config_h) cmds.o : cmds.c syntax.h buffer.h commands.h $(config_h) + pre-crt0.o : pre-crt0.c crt0.o : crt0.c $(config_h) $(CC) -c $(ALL_CFLAGS) C_SWITCH_ASM ${srcdir}/crt0.c dired.o : dired.c commands.h buffer.h $(config_h) regex.h diff -cprP --exclude=*.elc emacs-19.14/vms/ChangeLog emacs-19.15/vms/ChangeLog *** emacs-19.14/vms/ChangeLog Thu Jun 17 19:44:08 1993 --- emacs-19.15/vms/ChangeLog Sat Jun 19 17:57:45 1993 *************** *** 1,3 **** --- 1,7 ---- + Sat Jun 19 17:14:27 1993 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu) + + * version 19.15 released. + Thu Jun 17 19:29:56 1993 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu) * Version 19.14 released.