diff lisp/prim/console.el @ 149:538048ae2ab8 r20-3b1

Import from CVS: tag r20-3b1
author cvs
date Mon, 13 Aug 2007 09:36:16 +0200
parents 360340f9fd5f
children 8eaf7971accc
line wrap: on
line diff
--- a/lisp/prim/console.el	Mon Aug 13 09:35:15 2007 +0200
+++ b/lisp/prim/console.el	Mon Aug 13 09:36:16 2007 +0200
@@ -1,7 +1,7 @@
 ;;; console.el --- miscellaneous console functions not written in C
 
-;;;; Copyright (C) 1994, 1995 Board of Trustees, University of Illinois
-;;;; Copyright (C) 1995, 1996 Ben Wing
+;; Copyright (C) 1994, 1995 Board of Trustees, University of Illinois
+;; Copyright (C) 1995, 1996 Ben Wing
 
 ;; Keywords: internal
 
@@ -24,6 +24,10 @@
 
 ;;; Synched up with: Not in FSF.
 
+;;; Commentary:
+
+;;; Code:
+
 (defun quit-char (&optional console)
   "Return the character that causes a QUIT to happen.
 This is normally C-g.  Optional arg CONSOLE specifies the console
@@ -34,8 +38,10 @@
   "Resume the consoles with a controlling process of PID."
   (mapc (lambda (c) 
 	  (if (and (eq (console-type c) 'tty)
-		   (= pid (console-tty-controlling-process c)))
+		   (eq pid (console-tty-controlling-process c)))
 	      (resume-console c)))
 	(console-list))
   ; documentation for mapc lies!
   nil)
+
+;;; console.el ends here