;;; -*- Mode:Lisp; Readtable:ZL; Package:USER; Base:8; Patch-File:T -*- ;;; Patch file for System version 124.94 ;;; Reason: ;;; ZWEI fixes: ;;; - correct user visible spelling errors in documentation of a few ;;; commands. ;;; - com-install-command nicely dwimifies the package, but wasn't ;;; remembering the dwimification. ;;; Written 23-Jun-88 11:55:10 by pld (Peter L. DeWolf) at site Gigamos Cambridge ;;; while running on Cthulhu from band 1 ;;; with Experimental System 124.90, Experimental Local-File 74.2, Experimental File-Server 23.1, Experimental Unix-Interface 12.0, Experimental ZMail 72.1, Experimental Tape 23.6, Experimental Lambda-Diag 16.2, microcode 1760, SDU Boot Tape 3.14, SDU ROM 8, the old ones. ; From modified file DJ: L.ZWEI; COMG.LISP#48 at 23-Jun-88 11:59:00 #8R ZWEI#: (COMPILER-LET ((*PACKAGE* (PKG-FIND-PACKAGE "ZWEI"))) (COMPILER::PATCH-SOURCE-FILE "SYS: ZWEI; COMG  " (DEFCOM COM-SET-KEY "Install a specified editor command on a specified character. Two-character sequences starting with prefixes such as Control-X are also allowed; however, a numeric argument means to regard the prefix character itself as the character to be redefined." () (LET ((COMMAND (COMPLETING-READ-FROM-MINI-BUFFER "Command to install" *COMMAND-ALIST*))) (UNLESS (LISTP COMMAND) (BARF)) (INSTALL-COMMAND-INTERNAL (CDR COMMAND)))) )) ; From modified file DJ: L.ZWEI; COMG.LISP#48 at 23-Jun-88 12:04:40 #8R ZWEI#: (COMPILER-LET ((*PACKAGE* (PKG-FIND-PACKAGE "ZWEI"))) (COMPILER::PATCH-SOURCE-FILE "SYS: ZWEI; COMG  " (DEFCOM COM-DEFINE-CHARACTER "Install a specified editor command on a specified character. Two-character sequences starting with prefixes such as Control-X are also allowed; however, a numeric argument means to regard the prefix character itself as the character to be redefined." () (LET ((COMMAND (COMPLETING-READ-FROM-MINI-BUFFER "Command to install" *COMMAND-ALIST*))) (UNLESS (LISTP COMMAND) (BARF)) (INSTALL-COMMAND-INTERNAL (CDR COMMAND)))) )) ; From modified file DJ: L.ZWEI; COMG.LISP#48 at 23-Jun-88 12:05:17 #8R ZWEI#: (COMPILER-LET ((*PACKAGE* (PKG-FIND-PACKAGE "ZWEI"))) (COMPILER::PATCH-SOURCE-FILE "SYS: ZWEI; COMG  " (DEFCOM COM-INSTALL-COMMAND "Install a specified function on a specified editor command character. The name of the function is read from the mini-buffer (the top of the kill ring contains the name of the current defun), and a character from the echo area. Two-character sequences starting with prefixes such as Control-X are also allowed; however, a numeric argument means to regard the prefix character itself as the character to be redefined." () (loop (let ((name (READ-FUNCTION-NAME "Name of function to install" (RELEVANT-FUNCTION-NAME (POINT)) NIL 'ALWAYS-READ)) new-name) (AND (OR (FBOUNDP NAME) (setq new-name (si:dwimify-package-0 name 'fdefinedp)) ;in case we are not in the zwei package at the moment (FQUERY () "~A is not defined, ok to install anyway? " NAME)) (RETURN (INSTALL-COMMAND-INTERNAL (or new-name NAME))))))) ))