X-Git-Url: http://git.hcoop.net/bpt/emacs.git/blobdiff_plain/59ce725a3b68cbc324f01bc8dc5f9e07286431d1..ab422c4d6899b1442cb6954c1829c1fb656b006c:/lisp/talk.el diff --git a/lisp/talk.el b/lisp/talk.el index a578675c26..741571a8d7 100644 --- a/lisp/talk.el +++ b/lisp/talk.el @@ -1,17 +1,16 @@ ;;; talk.el --- allow several users to talk to each other through Emacs -;; Copyright (C) 1995, 2001, 2002, 2003, 2004, 2005, -;; 2006, 2007, 2008 Free Software Foundation, Inc. +;; Copyright (C) 1995, 2001-2013 Free Software Foundation, Inc. ;; Maintainer: FSF ;; Keywords: comm, frames ;; This file is part of GNU Emacs. -;; GNU Emacs is free software; you can redistribute it and/or modify +;; 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 3, or (at your option) -;; any later version. +;; the Free Software Foundation, either version 3 of the License, 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 @@ -19,9 +18,7 @@ ;; 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, Inc., 51 Franklin Street, Fifth Floor, -;; Boston, MA 02110-1301, USA. +;; along with GNU Emacs. If not, see . ;;; Commentary: @@ -50,28 +47,20 @@ Each element has the form (DISPLAY FRAME BUFFER).") (defun talk () "Connect to the Emacs talk group from the current X display or tty frame." (interactive) - (let ((type (frame-live-p (selected-frame))) - (display (frame-terminal (selected-frame)))) - (cond - ((eq type t) - (talk-add-display (selected-frame))) - ((eq type 'x) - (talk-add-display (frame-terminal (selected-frame)))) - (t - (error "Unknown frame type")))) + (let ((type (frame-live-p (selected-frame)))) + (if (or (eq type t) (eq type 'x)) + (talk-add-display + (terminal-name (frame-terminal (selected-frame)))) + (error "Unknown frame type"))) (talk-update-buffers)) -(defun talk-add-display (frame) - (let* ((display (if (frame-live-p frame) - (frame-terminal frame) - frame)) - (elt (assoc display talk-display-alist)) - (name (concat "*talk-" (terminal-name display) "*")) - buffer) - (unless (frame-live-p frame) - (setq frame (make-frame-on-display display (list (cons 'name name))))) +(defun talk-add-display (display) + (let* ((elt (assoc display talk-display-alist)) + (name (concat "*talk-" display "*")) + frame buffer) (if (and elt (frame-live-p (nth 1 elt))) - (setq frame (nth 1 elt))) + (setq frame (nth 1 elt)) + (setq frame (make-frame-on-display display (list (cons 'name name))))) (if (not (and elt (buffer-name (get-buffer (setq buffer (nth 2 elt)))))) (setq buffer (get-buffer-create name))) (add-to-list 'delete-frame-functions 'talk-handle-delete-frame) @@ -122,12 +111,11 @@ Select the first of these windows, displaying the first of the buffers." (while (progn (switch-to-buffer (car buffers)) (setq buffers (cdr buffers))) - (split-window-vertically lines-per-buffer) + (split-window-below lines-per-buffer) (other-window 1)) (select-window (frame-first-window frame))) (select-frame old-frame)))) (provide 'talk) -;;; arch-tag: 7ab0ad88-1788-4886-a44c-ae685e6f8a1a ;;; talk.el ends here