emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] /srv/bzr/emacs/trunk r101555: Tiny comint.el change.


From: Glenn Morris
Subject: [Emacs-diffs] /srv/bzr/emacs/trunk r101555: Tiny comint.el change.
Date: Thu, 23 Sep 2010 00:09:24 -0700
User-agent: Bazaar (2.0.3)

------------------------------------------------------------
revno: 101555
committer: Glenn Morris <address@hidden>
branch nick: trunk
timestamp: Thu 2010-09-23 00:09:24 -0700
message:
  Tiny comint.el change.
  * lisp/comint.el (comint-use-prompt-regexp-instead-of-fields):
  Move alias before definition, so it does not need autoloading.
modified:
  lisp/ChangeLog
  lisp/comint.el
=== modified file 'lisp/ChangeLog'
--- a/lisp/ChangeLog    2010-09-23 06:42:45 +0000
+++ b/lisp/ChangeLog    2010-09-23 07:09:24 +0000
@@ -1,5 +1,8 @@
 2010-09-23  Glenn Morris  <address@hidden>
 
+       * comint.el (comint-use-prompt-regexp-instead-of-fields):
+       Move alias before definition, so it does not need autoloading.
+
        * emulation/crisp.el, emulation/cua-base.el, emulation/edt.el:
        * emulation/pc-select.el, emulation/vip.el, international/iso-ascii.el:
        * international/kkc.el, international/ogonek.el, mail/feedmail.el:

=== modified file 'lisp/comint.el'
--- a/lisp/comint.el    2010-08-29 16:17:13 +0000
+++ b/lisp/comint.el    2010-09-23 07:09:24 +0000
@@ -1,8 +1,8 @@
 ;;; comint.el --- general command interpreter in a window stuff
 
-;; Copyright (C) 1988, 1990, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
-;;   2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010
-;;   Free Software Foundation, Inc.
+;; Copyright (C) 1988, 1990, 1992, 1993, 1994, 1995, 1996, 1997, 1998,
+;;   1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009,
+;;   2010  Free Software Foundation, Inc.
 
 ;; Author: Olin Shivers <address@hidden>
 ;;     Simon Marshall <address@hidden>
@@ -415,6 +415,9 @@
   :type 'boolean
   :group 'comint)
 
+(define-obsolete-variable-alias 'comint-use-prompt-regexp-instead-of-fields
+  'comint-use-prompt-regexp "22.1")
+
 ;; Note: If it is decided to purge comint-prompt-regexp from the source
 ;; entirely, searching for uses of this variable will help to identify
 ;; places that need attention.
@@ -427,11 +430,6 @@
   :type 'boolean
   :group 'comint)
 
-;; Autoload is necessary for Custom to recognize old alias.
-;;;###autoload
-(define-obsolete-variable-alias 'comint-use-prompt-regexp-instead-of-fields
-  'comint-use-prompt-regexp "22.1")
-
 (defcustom comint-mode-hook nil
   "Hook run upon entry to `comint-mode'.
 This is run before the process is cranked up."


reply via email to

[Prev in Thread] Current Thread [Next in Thread]