Remove LISP manual reference. Added to web "interfaces" page.
authorBruce Momjian
Tue, 8 May 2001 19:14:52 +0000 (19:14 +0000)
committerBruce Momjian
Tue, 8 May 2001 19:14:52 +0000 (19:14 +0000)
doc/src/sgml/filelist.sgml
doc/src/sgml/lisp.sgml [deleted file]
doc/src/sgml/programmer.sgml

index b56bd4c24e41c5e6988d222e2750a6a02b22dfe3..927a231d5aa5c57b68782dfd5d0e0382266c68e4 100644 (file)
@@ -1,4 +1,4 @@
-
+
 
 
 
@@ -63,7 +63,6 @@
 
 
 
-
 
 
 
diff --git a/doc/src/sgml/lisp.sgml b/doc/src/sgml/lisp.sgml
deleted file mode 100644 (file)
index 8de2c5e..0000000
+++ /dev/null
@@ -1,106 +0,0 @@
-
-
-  Lisp Programming Interface
-
-  
-   
-    pg.el is a socket-level interface to
-    Postgres for emacs.
-   
-  
-
-  
-   Author
-   
-    Written by Eric Marsden [email protected]
-    on 1999-07-21
-   
-  
-
-  
-   pg.el is a socket-level interface to
-   Postgres for emacs (text
-   editor extraordinaire). The module is capable of type coercions from a
-   range of SQL types to the equivalent Emacs Lisp type. It currently
-   supports neither crypt or Kerberos authentication, nor large objects.
-  
-
-  
-   The code (version 0.2) is available under GNU GPL from
-   Eric Marsden
-  
-
-  
-Changes since last release:
-
-   
-    
-     
-      now works with XEmacs (tested with Emacs 19.34 & 20.2, and XEmacs
-      20.4)
-     
-    
-
-    
-     
-      added functions to provide database metainformation (list of
-      databases, of tables, of columns)
-     
-    
-
-    
-     
-      arguments to `pg:result' are now :keywords
-     
-    
-
-    
-     
-      MULE-resistant
-     
-    
-
-    
-     
-      more self-testing code
-     
-    
-   
-  
-
-  
-   Please note that this is a programmer's API, and doesn't provide any
-   form of user interface. Example:
-
-   
- (defun demo ()
-    (interactive)
-    (let* ((conn (pg:connect "template1" "postgres" "postgres"))
-           (res (pg:exec conn "SELECT * from scshdemo WHERE a = 42")))
-      (message "status is %s"   (pg:result res :status))
-      (message "metadata is %s" (pg:result res :attributes))
-      (message "data is %s"     (pg:result res :tuples))
-      (pg:disconnect conn)))
-   
-  
-
-
index 7cb73ac5e427dbba51201b512e61c9b9553d68cc..af899eceee2ab94d8707f65836e344761de27554 100644 (file)
@@ -1,5 +1,5 @@
 
@@ -49,7 +49,6 @@ PostgreSQL Programmer's Guide.
   &odbc;
   &jdbc;
   &pygresql;
-  &lisp;