aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Morris2008-01-24 04:49:39 +0000
committerGlenn Morris2008-01-24 04:49:39 +0000
commit478975a92ab0e5d966082be1b565bb3792bfd987 (patch)
treee62b80c6ef96f037599e8419ef282fd233f203f1
parent881c0f33dde8ea52d1dff18969cb843b96c3aad1 (diff)
downloademacs-478975a92ab0e5d966082be1b565bb3792bfd987.tar.gz
emacs-478975a92ab0e5d966082be1b565bb3792bfd987.zip
(gpm-mouse-start): Declare as a function.
-rw-r--r--lisp/ChangeLog12
-rw-r--r--lisp/t-mouse.el6
2 files changed, 12 insertions, 6 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 62c718c8a61..0272d6cbec1 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,8 +1,11 @@
12008-01-24 Glenn Morris <rgm@gnu.org>
2
3 * t-mouse.el (gpm-mouse-start): Declare as a function.
4
12008-01-23 Michael Albinus <michael.albinus@gmx.de> 52008-01-23 Michael Albinus <michael.albinus@gmx.de>
2 6
3 * net/tramp.el (tramp-remote-process-environment): Set "LC_ALL=C". 7 * net/tramp.el (tramp-remote-process-environment): Set "LC_ALL=C".
4 (tramp-end-of-output): Add `tramp-rsh-end-of-line' into the 8 (tramp-end-of-output): Add `tramp-rsh-end-of-line' into the regexp.
5 regexp.
6 (tramp-find-shell, tramp-open-connection-setup-interactive-shell): 9 (tramp-find-shell, tramp-open-connection-setup-interactive-shell):
7 Don't send `tramp-rsh-end-of-line' additionally, when setting the 10 Don't send `tramp-rsh-end-of-line' additionally, when setting the
8 prompt. 11 prompt.
@@ -10,7 +13,7 @@
10 (tramp-get-test-nt-command): Don't check for "\n" in the prompt. 13 (tramp-get-test-nt-command): Don't check for "\n" in the prompt.
11 (tramp-local-host-p): Check whether temp directory is writable. 14 (tramp-local-host-p): Check whether temp directory is writable.
12 15
1322008-01-23 Dan Nicolaescu <dann@ics.uci.edu> 162008-01-23 Dan Nicolaescu <dann@ics.uci.edu>
14 17
15 * vc.el: Add TODO items. 18 * vc.el: Add TODO items.
16 19
@@ -20,8 +23,7 @@
20 be used to reveal or highlight the location of a match. 23 be used to reveal or highlight the location of a match.
21 (occur-mode-goto-occurrence) 24 (occur-mode-goto-occurrence)
22 (occur-mode-goto-occurrence-other-window) 25 (occur-mode-goto-occurrence-other-window)
23 (occur-mode-display-occurrence): Run 26 (occur-mode-display-occurrence): Run `occur-mode-find-occurrence-hook'.
24 `occur-mode-find-occurrence-hook'.
25 27
262008-01-23 Martin Rudalics <rudalics@gmx.at> 282008-01-23 Martin Rudalics <rudalics@gmx.at>
27 29
diff --git a/lisp/t-mouse.el b/lisp/t-mouse.el
index 1a000f37470..a89fe142551 100644
--- a/lisp/t-mouse.el
+++ b/lisp/t-mouse.el
@@ -4,7 +4,8 @@
4;; Maintainer: FSF 4;; Maintainer: FSF
5;; Keywords: mouse gpm linux 5;; Keywords: mouse gpm linux
6 6
7;; Copyright (C) 1994, 1995, 1998, 2006, 2007, 2008 Free Software Foundation, Inc. 7;; Copyright (C) 1994, 1995, 1998, 2006, 2007, 2008
8;; Free Software Foundation, Inc.
8 9
9;; This file is part of GNU Emacs. 10;; This file is part of GNU Emacs.
10 11
@@ -39,6 +40,9 @@
39 40
40;;; Code: 41;;; Code:
41 42
43;; Prevent warning when compiling in an Emacs without gpm support.
44(declare-function gpm-mouse-start "term.c" ())
45
42;;;###autoload 46;;;###autoload
43(define-obsolete-function-alias 't-mouse-mode 'gpm-mouse-mode "23.1") 47(define-obsolete-function-alias 't-mouse-mode 'gpm-mouse-mode "23.1")
44;;;###autoload 48;;;###autoload