Bump version to 23.2.
This commit is contained in:
parent
3b180a24db
commit
61a808e819
41 changed files with 156 additions and 68 deletions
|
@ -1,3 +1,7 @@
|
|||
2010-05-07 Chong Yidong <cyd@stupidchicken.com>
|
||||
|
||||
* Version 23.2 released.
|
||||
|
||||
2010-05-03 Štěpán Němec <stepnem@gmail.com> (tiny change)
|
||||
|
||||
* INSTALL: Fix typos.
|
||||
|
|
2
README
2
README
|
@ -3,7 +3,7 @@ Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009,
|
|||
See the end of the file for license conditions.
|
||||
|
||||
|
||||
This directory tree holds version 23.1.97 of GNU Emacs, the extensible,
|
||||
This directory tree holds version 23.2 of GNU Emacs, the extensible,
|
||||
customizable, self-documenting real-time display editor.
|
||||
|
||||
The file INSTALL in this directory says how to build and install GNU
|
||||
|
|
|
@ -1,3 +1,7 @@
|
|||
2010-05-07 Chong Yidong <cyd@stupidchicken.com>
|
||||
|
||||
* Version 23.2 released.
|
||||
|
||||
2010-02-14 Juanma Barranquero <lekktu@gmail.com>
|
||||
|
||||
* quick-install-emacs (PRUNED): Fix typo in message.
|
||||
|
|
18
configure
vendored
18
configure
vendored
|
@ -1,6 +1,6 @@
|
|||
#! /bin/sh
|
||||
# Guess values for system-dependent variables and create Makefiles.
|
||||
# Generated by GNU Autoconf 2.62 for emacs 23.1.97.
|
||||
# Generated by GNU Autoconf 2.62 for emacs 23.2.
|
||||
#
|
||||
# Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001,
|
||||
# 2002, 2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc.
|
||||
|
@ -594,8 +594,8 @@ SHELL=${CONFIG_SHELL-/bin/sh}
|
|||
# Identity of this package.
|
||||
PACKAGE_NAME='emacs'
|
||||
PACKAGE_TARNAME='emacs'
|
||||
PACKAGE_VERSION='23.1.97'
|
||||
PACKAGE_STRING='emacs 23.1.97'
|
||||
PACKAGE_VERSION='23.2'
|
||||
PACKAGE_STRING='emacs 23.2'
|
||||
PACKAGE_BUGREPORT=''
|
||||
|
||||
ac_unique_file="src/lisp.h"
|
||||
|
@ -1371,7 +1371,7 @@ if test "$ac_init_help" = "long"; then
|
|||
# Omit some internal or obsolete options to make the list less imposing.
|
||||
# This message is too long to be a string in the A/UX 3.1 sh.
|
||||
cat <<_ACEOF
|
||||
\`configure' configures emacs 23.1.97 to adapt to many kinds of systems.
|
||||
\`configure' configures emacs 23.2 to adapt to many kinds of systems.
|
||||
|
||||
Usage: $0 [OPTION]... [VAR=VALUE]...
|
||||
|
||||
|
@ -1445,7 +1445,7 @@ fi
|
|||
|
||||
if test -n "$ac_init_help"; then
|
||||
case $ac_init_help in
|
||||
short | recursive ) echo "Configuration of emacs 23.1.97:";;
|
||||
short | recursive ) echo "Configuration of emacs 23.2:";;
|
||||
esac
|
||||
cat <<\_ACEOF
|
||||
|
||||
|
@ -1588,7 +1588,7 @@ fi
|
|||
test -n "$ac_init_help" && exit $ac_status
|
||||
if $ac_init_version; then
|
||||
cat <<\_ACEOF
|
||||
emacs configure 23.1.97
|
||||
emacs configure 23.2
|
||||
generated by GNU Autoconf 2.62
|
||||
|
||||
Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001,
|
||||
|
@ -1602,7 +1602,7 @@ cat >config.log <<_ACEOF
|
|||
This file contains any messages produced by compilers while
|
||||
running configure, to aid debugging if configure makes a mistake.
|
||||
|
||||
It was created by emacs $as_me 23.1.97, which was
|
||||
It was created by emacs $as_me 23.2, which was
|
||||
generated by GNU Autoconf 2.62. Invocation command line was
|
||||
|
||||
$ $0 $@
|
||||
|
@ -26269,7 +26269,7 @@ exec 6>&1
|
|||
# report actual input values of CONFIG_FILES etc. instead of their
|
||||
# values after options handling.
|
||||
ac_log="
|
||||
This file was extended by emacs $as_me 23.1.97, which was
|
||||
This file was extended by emacs $as_me 23.2, which was
|
||||
generated by GNU Autoconf 2.62. Invocation command line was
|
||||
|
||||
CONFIG_FILES = $CONFIG_FILES
|
||||
|
@ -26322,7 +26322,7 @@ Report bugs to <bug-autoconf@gnu.org>."
|
|||
_ACEOF
|
||||
cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
|
||||
ac_cs_version="\\
|
||||
emacs config.status 23.1.97
|
||||
emacs config.status 23.2
|
||||
configured by $0, generated by GNU Autoconf 2.62,
|
||||
with options \\"`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`\\"
|
||||
|
||||
|
|
|
@ -22,7 +22,7 @@ dnl You should have received a copy of the GNU General Public License
|
|||
dnl along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
AC_PREREQ(2.62)
|
||||
AC_INIT(emacs, 23.1.97)
|
||||
AC_INIT(emacs, 23.2)
|
||||
AC_CONFIG_HEADER(src/config.h:src/config.in)
|
||||
AC_CONFIG_SRCDIR(src/lisp.h)
|
||||
|
||||
|
|
|
@ -1,3 +1,7 @@
|
|||
2010-05-07 Chong Yidong <cyd@stupidchicken.com>
|
||||
|
||||
* Version 23.2 released.
|
||||
|
||||
2010-05-07 Chong Yidong <cyd@stupidchicken.com>
|
||||
|
||||
* building.texi (GDB Graphical Interface): Remove misleading comparison
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
|
||||
@c The edition number appears in several places in this file
|
||||
@set EDITION Sixteenth
|
||||
@set EMACSVER 23.1.97
|
||||
@set EMACSVER 23.2
|
||||
|
||||
@copying
|
||||
This is the @value{EDITION} edition of the @cite{GNU Emacs Manual},@*
|
||||
|
|
|
@ -1,3 +1,7 @@
|
|||
2010-05-07 Chong Yidong <cyd@stupidchicken.com>
|
||||
|
||||
* Version 23.2 released.
|
||||
|
||||
2010-02-16 Glenn Morris <rgm@gnu.org>
|
||||
|
||||
* emacs-lisp-intro.texi: Fix typo in name of `find-tag' command.
|
||||
|
|
|
@ -1,3 +1,7 @@
|
|||
2010-05-07 Chong Yidong <cyd@stupidchicken.com>
|
||||
|
||||
* Version 23.2 released.
|
||||
|
||||
2010-05-03 Štěpán Němec <stepnem@gmail.com> (tiny change)
|
||||
|
||||
* windows.texi (Textual Scrolling):
|
||||
|
|
|
@ -11,7 +11,7 @@
|
|||
@center @titlefont{GNU Emacs Lisp Reference Manual}
|
||||
@sp 5
|
||||
@center GNU
|
||||
@center Emacs Version 23.1.97
|
||||
@center Emacs Version 23.2
|
||||
@center for Unix Users
|
||||
@sp 5
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
@c Please remember to update the edition number in README as well.
|
||||
@c And also the copies in vol1.texi and vol2.texi.
|
||||
@set VERSION 3.0
|
||||
@set EMACSVER 23.1.97
|
||||
@set EMACSVER 23.2
|
||||
@set DATE July 2009
|
||||
|
||||
@c in general, keep the following line commented out, unless doing a
|
||||
|
|
|
@ -27,7 +27,7 @@
|
|||
@c Version of the manual and of Emacs.
|
||||
@c Please remember to update the edition number in README as well.
|
||||
@set VERSION 3.0
|
||||
@set EMACSVER 23.1.97
|
||||
@set EMACSVER 23.2
|
||||
@set DATE July 2009
|
||||
|
||||
@dircategory Emacs
|
||||
|
|
|
@ -27,7 +27,7 @@
|
|||
@c Version of the manual and of Emacs.
|
||||
@c Please remember to update the edition number in README as well.
|
||||
@set VERSION 3.0
|
||||
@set EMACSVER 23.1.97
|
||||
@set EMACSVER 23.2
|
||||
@set DATE July 2009
|
||||
|
||||
@dircategory Emacs
|
||||
|
|
|
@ -1,3 +1,7 @@
|
|||
2010-05-07 Chong Yidong <cyd@stupidchicken.com>
|
||||
|
||||
* Version 23.2 released.
|
||||
|
||||
2010-01-09 Chong Yidong <cyd@stupidchicken.com>
|
||||
|
||||
* emacs.1: Copyedits. Update options -Q, -mm and --daemon. Remove
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
.\" See section COPYING for copyright and redistribution information.
|
||||
.TH EMACS 1 "2007 April 13" "GNU Emacs 23.1.97"
|
||||
.TH EMACS 1 "2007 April 13" "GNU Emacs 23.2"
|
||||
.
|
||||
.
|
||||
.SH NAME
|
||||
|
|
|
@ -1,3 +1,7 @@
|
|||
2010-05-07 Chong Yidong <cyd@stupidchicken.com>
|
||||
|
||||
* Version 23.2 released.
|
||||
|
||||
2010-05-03 Štěpán Němec <stepnem@gmail.com> (tiny change)
|
||||
|
||||
* url.texi (HTTP language/coding, Customization):
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
@c %**end of header
|
||||
|
||||
@c This is used in many places
|
||||
@set VER 23.1.97
|
||||
@set VER 23.2
|
||||
|
||||
@c This file is maintained by Romain Francoise <rfrancoise@gnu.org>.
|
||||
@c Feel free to install changes without prior permission (but I'd
|
||||
|
|
|
@ -1,3 +1,7 @@
|
|||
2010-05-07 Chong Yidong <cyd@stupidchicken.com>
|
||||
|
||||
* Version 23.2 released.
|
||||
|
||||
2010-04-27 Chong Yidong <cyd@stupidchicken.com>
|
||||
|
||||
* PROBLEMS: Document gcc-4.5 bug (Bug#6031).
|
||||
|
|
|
@ -1,3 +1,7 @@
|
|||
2010-05-07 Chong Yidong <cyd@stupidchicken.com>
|
||||
|
||||
* Version 23.2 released.
|
||||
|
||||
2010-04-06 Chong Yidong <cyd@stupidchicken.com>
|
||||
|
||||
* quail/vntelex.el: Fix "af" rule (Bug#5836).
|
||||
|
|
|
@ -1,3 +1,7 @@
|
|||
2010-05-07 Chong Yidong <cyd@stupidchicken.com>
|
||||
|
||||
* Version 23.2 released.
|
||||
|
||||
2010-05-05 Christoph <cschol2112@googlemail.com> (tiny change)
|
||||
|
||||
* makefile.w32-in (OTHER_PLATFORM_SUPPORT): Use parenthesis
|
||||
|
|
|
@ -22,7 +22,7 @@ ALL = make-docfile hexl ctags etags movemail ebrowse sorted-doc digest-doc emacs
|
|||
|
||||
.PHONY: $(ALL)
|
||||
|
||||
VERSION = 23.1.97
|
||||
VERSION = 23.2
|
||||
|
||||
LOCAL_FLAGS = -DWINDOWSNT -DDOS_NT -DSTDC_HEADERS=1 -DNO_LDAV=1 \
|
||||
-DNO_ARCHIVES=1 -DHAVE_CONFIG_H=1 -I../nt/inc \
|
||||
|
|
|
@ -1,3 +1,7 @@
|
|||
2010-05-07 Chong Yidong <cyd@stupidchicken.com>
|
||||
|
||||
* Version 23.2 released.
|
||||
|
||||
2010-05-03 Chong Yidong <cyd@stupidchicken.com>
|
||||
|
||||
* international/mule.el (auto-coding-alist): Only purecopy
|
||||
|
|
|
@ -1,3 +1,7 @@
|
|||
2010-05-07 Chong Yidong <cyd@stupidchicken.com>
|
||||
|
||||
* Version 23.2 released.
|
||||
|
||||
2010-02-07 Vivek Dasmohapatra <vivek@etla.org>
|
||||
|
||||
* erc-services.el (erc-nickserv-alist): Fix defcustom type (Bug#5520).
|
||||
|
|
|
@ -4037,8 +4037,8 @@ on third call it again advances points to the next difference and so on.
|
|||
;;;;;; compilation-shell-minor-mode compilation-mode compilation-start
|
||||
;;;;;; compile compilation-disable-input compile-command compilation-search-path
|
||||
;;;;;; compilation-ask-about-save compilation-window-height compilation-start-hook
|
||||
;;;;;; compilation-mode-hook) "compile" "progmodes/compile.el" (19383
|
||||
;;;;;; 49284))
|
||||
;;;;;; compilation-mode-hook) "compile" "progmodes/compile.el" (19405
|
||||
;;;;;; 51439))
|
||||
;;; Generated autoloads from progmodes/compile.el
|
||||
|
||||
(defvar compilation-mode-hook nil "\
|
||||
|
@ -5979,7 +5979,7 @@ Major mode for editing the diary file.
|
|||
;;;***
|
||||
|
||||
;;;### (autoloads (diff-backup diff diff-command diff-switches) "diff"
|
||||
;;;;;; "diff.el" (19383 49279))
|
||||
;;;;;; "diff.el" (19419 35832))
|
||||
;;; Generated autoloads from diff.el
|
||||
|
||||
(defvar diff-switches (purecopy "-c") "\
|
||||
|
@ -9886,7 +9886,7 @@ Evaluate the forms in variable `ffap-bindings'.
|
|||
;;;### (autoloads (file-cache-minibuffer-complete file-cache-add-directory-recursively
|
||||
;;;;;; file-cache-add-directory-using-locate file-cache-add-directory-using-find
|
||||
;;;;;; file-cache-add-file file-cache-add-directory-list file-cache-add-directory)
|
||||
;;;;;; "filecache" "filecache.el" (19383 49279))
|
||||
;;;;;; "filecache" "filecache.el" (19409 46567))
|
||||
;;; Generated autoloads from filecache.el
|
||||
|
||||
(autoload 'file-cache-add-directory "filecache" "\
|
||||
|
@ -9899,8 +9899,8 @@ be added to the cache.
|
|||
(autoload 'file-cache-add-directory-list "filecache" "\
|
||||
Add DIRECTORY-LIST (a list of directory names) to the file cache.
|
||||
If the optional REGEXP argument is non-nil, only files which match it
|
||||
will be added to the cache. Note that the REGEXP is applied to the files
|
||||
in each directory, not to the directory list itself.
|
||||
will be added to the cache. Note that the REGEXP is applied to the
|
||||
files in each directory, not to the directory list itself.
|
||||
|
||||
\(fn DIRECTORY-LIST &optional REGEXP)" t nil)
|
||||
|
||||
|
@ -9923,10 +9923,10 @@ STRING is passed as an argument to the locate command.
|
|||
|
||||
(autoload 'file-cache-add-directory-recursively "filecache" "\
|
||||
Adds DIR and any subdirectories to the file-cache.
|
||||
This function does not use any external programs
|
||||
This function does not use any external programs.
|
||||
If the optional REGEXP argument is non-nil, only files which match it
|
||||
will be added to the cache. Note that the REGEXP is applied to the files
|
||||
in each directory, not to the directory list itself.
|
||||
will be added to the cache. Note that the REGEXP is applied to the
|
||||
files in each directory, not to the directory list itself.
|
||||
|
||||
\(fn DIR &optional REGEXP)" t nil)
|
||||
|
||||
|
@ -10044,7 +10044,7 @@ result is a string that should be ready for the command line.
|
|||
|
||||
;;;### (autoloads (find-grep-dired find-name-dired find-dired find-grep-options
|
||||
;;;;;; find-ls-subdir-switches find-ls-option) "find-dired" "find-dired.el"
|
||||
;;;;;; (19383 49279))
|
||||
;;;;;; (19422 11991))
|
||||
;;; Generated autoloads from find-dired.el
|
||||
|
||||
(defvar find-ls-option (if (eq system-type 'berkeley-unix) (purecopy '("-ls" . "-gilsb")) (purecopy '("-exec ls -ld {} \\;" . "-ld"))) "\
|
||||
|
@ -14285,7 +14285,7 @@ easy-to-use form.
|
|||
|
||||
;;;### (autoloads (auto-image-file-mode insert-image-file image-file-name-regexp
|
||||
;;;;;; image-file-name-regexps image-file-name-extensions) "image-file"
|
||||
;;;;;; "image-file.el" (19383 49279))
|
||||
;;;;;; "image-file.el" (19422 11991))
|
||||
;;; Generated autoloads from image-file.el
|
||||
|
||||
(defvar image-file-name-extensions (purecopy '("png" "jpeg" "jpg" "gif" "tiff" "tif" "xbm" "xpm" "pbm" "pgm" "ppm" "pnm" "svg")) "\
|
||||
|
@ -14347,7 +14347,7 @@ Image files are those whose name has an extension in
|
|||
;;;***
|
||||
|
||||
;;;### (autoloads (image-bookmark-jump image-mode-as-text image-minor-mode
|
||||
;;;;;; image-mode) "image-mode" "image-mode.el" (19383 49276))
|
||||
;;;;;; image-mode) "image-mode" "image-mode.el" (19412 35030))
|
||||
;;; Generated autoloads from image-mode.el
|
||||
(push (cons (purecopy "\\.jpe?g\\'") 'image-mode) auto-mode-alist)
|
||||
(push (cons (purecopy "\\.png\\'") 'image-mode) auto-mode-alist)
|
||||
|
@ -14382,7 +14382,7 @@ displays an image file as text. `image-minor-mode' provides the key
|
|||
to display an image file as the actual image.
|
||||
|
||||
You can use `image-mode-as-text' in `auto-mode-alist' when you want
|
||||
to display an image file as text inititally.
|
||||
to display an image file as text initially.
|
||||
|
||||
See commands `image-mode' and `image-minor-mode' for more information
|
||||
on these modes.
|
||||
|
@ -14614,7 +14614,7 @@ of `inferior-lisp-program'). Runs the hooks from
|
|||
;;;;;; Info-goto-emacs-command-node Info-mode info-finder info-apropos
|
||||
;;;;;; Info-index Info-directory Info-on-current-buffer info-standalone
|
||||
;;;;;; info-emacs-manual info info-other-window) "info" "info.el"
|
||||
;;;;;; (19387 20299))
|
||||
;;;;;; (19412 35030))
|
||||
;;; Generated autoloads from info.el
|
||||
|
||||
(autoload 'info-other-window "info" "\
|
||||
|
@ -15400,7 +15400,7 @@ by `jka-compr-installed'.
|
|||
|
||||
;;;***
|
||||
|
||||
;;;### (autoloads (js-mode) "js" "progmodes/js.el" (19383 49284))
|
||||
;;;### (autoloads (js-mode) "js" "progmodes/js.el" (19421 38445))
|
||||
;;; Generated autoloads from progmodes/js.el
|
||||
|
||||
(autoload 'js-mode "js" "\
|
||||
|
@ -16740,7 +16740,7 @@ Returns non-nil if the new state is enabled.
|
|||
;;;;;; message-forward-make-body message-forward message-recover
|
||||
;;;;;; message-supersede message-cancel-news message-followup message-wide-reply
|
||||
;;;;;; message-reply message-news message-mail message-mode) "message"
|
||||
;;;;;; "gnus/message.el" (19383 49284))
|
||||
;;;;;; "gnus/message.el" (19409 46567))
|
||||
;;; Generated autoloads from gnus/message.el
|
||||
|
||||
(define-mail-user-agent 'message-user-agent 'message-mail 'message-send-and-exit 'message-kill-buffer 'message-send-hook)
|
||||
|
@ -25167,8 +25167,8 @@ Return a vector containing the lines from `spook-phrases-file'.
|
|||
;;;### (autoloads (sql-linter sql-db2 sql-interbase sql-postgres
|
||||
;;;;;; sql-ms sql-ingres sql-solid sql-mysql sql-sqlite sql-informix
|
||||
;;;;;; sql-sybase sql-oracle sql-product-interactive sql-mode sql-help
|
||||
;;;;;; sql-add-product-keywords) "sql" "progmodes/sql.el" (19383
|
||||
;;;;;; 49282))
|
||||
;;;;;; sql-add-product-keywords) "sql" "progmodes/sql.el" (19412
|
||||
;;;;;; 35030))
|
||||
;;; Generated autoloads from progmodes/sql.el
|
||||
|
||||
(autoload 'sql-add-product-keywords "sql" "\
|
||||
|
@ -25286,7 +25286,7 @@ the variables `sql-user', `sql-password', and `sql-database' as
|
|||
defaults, if set. Additional command line parameters can be stored in
|
||||
the list `sql-oracle-options'.
|
||||
|
||||
The buffer is put in sql-interactive-mode, giving commands for sending
|
||||
The buffer is put in SQL interactive mode, giving commands for sending
|
||||
input. See `sql-interactive-mode'.
|
||||
|
||||
To specify a coding system for converting non-ASCII characters
|
||||
|
@ -25312,7 +25312,7 @@ the variables `sql-server', `sql-user', `sql-password', and
|
|||
`sql-database' as defaults, if set. Additional command line parameters
|
||||
can be stored in the list `sql-sybase-options'.
|
||||
|
||||
The buffer is put in sql-interactive-mode, giving commands for sending
|
||||
The buffer is put in SQL interactive mode, giving commands for sending
|
||||
input. See `sql-interactive-mode'.
|
||||
|
||||
To specify a coding system for converting non-ASCII characters
|
||||
|
@ -25336,7 +25336,7 @@ If buffer exists and a process is running, just switch to buffer
|
|||
Interpreter used comes from variable `sql-informix-program'. Login uses
|
||||
the variable `sql-database' as default, if set.
|
||||
|
||||
The buffer is put in sql-interactive-mode, giving commands for sending
|
||||
The buffer is put in SQL interactive mode, giving commands for sending
|
||||
input. See `sql-interactive-mode'.
|
||||
|
||||
To specify a coding system for converting non-ASCII characters
|
||||
|
@ -25364,7 +25364,7 @@ the variables `sql-user', `sql-password', `sql-database', and
|
|||
`sql-server' as defaults, if set. Additional command line parameters
|
||||
can be stored in the list `sql-sqlite-options'.
|
||||
|
||||
The buffer is put in sql-interactive-mode, giving commands for sending
|
||||
The buffer is put in SQL interactive mode, giving commands for sending
|
||||
input. See `sql-interactive-mode'.
|
||||
|
||||
To specify a coding system for converting non-ASCII characters
|
||||
|
@ -25392,7 +25392,7 @@ the variables `sql-user', `sql-password', `sql-database', and
|
|||
`sql-server' as defaults, if set. Additional command line parameters
|
||||
can be stored in the list `sql-mysql-options'.
|
||||
|
||||
The buffer is put in sql-interactive-mode, giving commands for sending
|
||||
The buffer is put in SQL interactive mode, giving commands for sending
|
||||
input. See `sql-interactive-mode'.
|
||||
|
||||
To specify a coding system for converting non-ASCII characters
|
||||
|
@ -25417,7 +25417,7 @@ Interpreter used comes from variable `sql-solid-program'. Login uses
|
|||
the variables `sql-user', `sql-password', and `sql-server' as
|
||||
defaults, if set.
|
||||
|
||||
The buffer is put in sql-interactive-mode, giving commands for sending
|
||||
The buffer is put in SQL interactive mode, giving commands for sending
|
||||
input. See `sql-interactive-mode'.
|
||||
|
||||
To specify a coding system for converting non-ASCII characters
|
||||
|
@ -25441,7 +25441,7 @@ If buffer exists and a process is running, just switch to buffer
|
|||
Interpreter used comes from variable `sql-ingres-program'. Login uses
|
||||
the variable `sql-database' as default, if set.
|
||||
|
||||
The buffer is put in sql-interactive-mode, giving commands for sending
|
||||
The buffer is put in SQL interactive mode, giving commands for sending
|
||||
input. See `sql-interactive-mode'.
|
||||
|
||||
To specify a coding system for converting non-ASCII characters
|
||||
|
@ -25467,7 +25467,7 @@ variables `sql-user', `sql-password', `sql-database', and `sql-server'
|
|||
as defaults, if set. Additional command line parameters can be stored
|
||||
in the list `sql-ms-options'.
|
||||
|
||||
The buffer is put in sql-interactive-mode, giving commands for sending
|
||||
The buffer is put in SQL interactive mode, giving commands for sending
|
||||
input. See `sql-interactive-mode'.
|
||||
|
||||
To specify a coding system for converting non-ASCII characters
|
||||
|
@ -25493,7 +25493,7 @@ the variables `sql-database' and `sql-server' as default, if set.
|
|||
Additional command line parameters can be stored in the list
|
||||
`sql-postgres-options'.
|
||||
|
||||
The buffer is put in sql-interactive-mode, giving commands for sending
|
||||
The buffer is put in SQL interactive mode, giving commands for sending
|
||||
input. See `sql-interactive-mode'.
|
||||
|
||||
To specify a coding system for converting non-ASCII characters
|
||||
|
@ -25523,7 +25523,7 @@ Interpreter used comes from variable `sql-interbase-program'. Login
|
|||
uses the variables `sql-user', `sql-password', and `sql-database' as
|
||||
defaults, if set.
|
||||
|
||||
The buffer is put in sql-interactive-mode, giving commands for sending
|
||||
The buffer is put in SQL interactive mode, giving commands for sending
|
||||
input. See `sql-interactive-mode'.
|
||||
|
||||
To specify a coding system for converting non-ASCII characters
|
||||
|
@ -25547,7 +25547,7 @@ If buffer exists and a process is running, just switch to buffer
|
|||
Interpreter used comes from variable `sql-db2-program'. There is not
|
||||
automatic login.
|
||||
|
||||
The buffer is put in sql-interactive-mode, giving commands for sending
|
||||
The buffer is put in SQL interactive mode, giving commands for sending
|
||||
input. See `sql-interactive-mode'.
|
||||
|
||||
If you use \\[sql-accumulate-and-indent] to send multiline commands to
|
||||
|
@ -25585,7 +25585,7 @@ local connections, `sql-server' refers to the server name from the
|
|||
for this to work). If `sql-password' is an empty string, inl will use
|
||||
an empty password.
|
||||
|
||||
The buffer is put in sql-interactive-mode, giving commands for sending
|
||||
The buffer is put in SQL interactive mode, giving commands for sending
|
||||
input. See `sql-interactive-mode'.
|
||||
|
||||
\(Type \\[describe-mode] in the SQL buffer for a list of commands.)
|
||||
|
@ -29590,7 +29590,7 @@ case, and the process object in the asynchronous case.
|
|||
|
||||
;;;***
|
||||
|
||||
;;;### (autoloads nil "vc-hg" "vc-hg.el" (19403 31656))
|
||||
;;;### (autoloads nil "vc-hg" "vc-hg.el" (19405 52797))
|
||||
;;; Generated autoloads from vc-hg.el
|
||||
(defun vc-hg-registered (file)
|
||||
"Return non-nil if FILE is registered with hg."
|
||||
|
@ -31971,8 +31971,8 @@ Zone out, completely.
|
|||
;;;;;; "url/url-expand.el" "url/url-ftp.el" "url/url-history.el"
|
||||
;;;;;; "url/url-imap.el" "url/url-methods.el" "url/url-nfs.el" "url/url-proxy.el"
|
||||
;;;;;; "url/url-vars.el" "vc-dav.el" "vcursor.el" "vt-control.el"
|
||||
;;;;;; "vt100-led.el" "w32-fns.el" "w32-vars.el" "x-dnd.el") (19405
|
||||
;;;;;; 42 652971))
|
||||
;;;;;; "vt100-led.el" "w32-fns.el" "w32-vars.el" "x-dnd.el") (19428
|
||||
;;;;;; 55161 909254))
|
||||
|
||||
;;;***
|
||||
|
||||
|
|
|
@ -1,3 +1,7 @@
|
|||
2010-05-07 Chong Yidong <cyd@stupidchicken.com>
|
||||
|
||||
* Version 23.2 released.
|
||||
|
||||
2010-03-22 Juanma Barranquero <lekktu@gmail.com>
|
||||
|
||||
* mh-scan.el (mh-scan-cmd-note-width): Doc fix.
|
||||
|
|
|
@ -1,3 +1,7 @@
|
|||
2010-05-07 Chong Yidong <cyd@stupidchicken.com>
|
||||
|
||||
* Version 23.2 released.
|
||||
|
||||
2010-02-15 Chong Yidong <cyd@stupidchicken.com>
|
||||
|
||||
* org-freemind.el (org-freemind-from-org-mode-node)
|
||||
|
|
|
@ -1,3 +1,7 @@
|
|||
2010-05-07 Chong Yidong <cyd@stupidchicken.com>
|
||||
|
||||
* Version 23.2 released.
|
||||
|
||||
2010-01-23 Chong Yidong <cyd@stupidchicken.com>
|
||||
|
||||
* url-util.el: Require url-vars (Bug#5459).
|
||||
|
|
|
@ -32,7 +32,7 @@
|
|||
(defconst emacs-copyright "Copyright (C) 2010 Free Software Foundation, Inc." "\
|
||||
Short copyright string for this version of Emacs.")
|
||||
|
||||
(defconst emacs-version "23.1.97" "\
|
||||
(defconst emacs-version "23.2" "\
|
||||
Version numbers of this version of Emacs.")
|
||||
|
||||
(defconst emacs-major-version (progn (string-match "^[0-9]+" emacs-version) (string-to-number (match-string 0 emacs-version))) "\
|
||||
|
|
|
@ -1,3 +1,7 @@
|
|||
2010-05-07 Chong Yidong <cyd@stupidchicken.com>
|
||||
|
||||
* Version 23.2 released.
|
||||
|
||||
2009-10-19 Dan Nicolaescu <dann@ics.uci.edu>
|
||||
|
||||
* xlwmenu.c:
|
||||
|
|
|
@ -1,3 +1,7 @@
|
|||
2010-05-07 Chong Yidong <cyd@stupidchicken.com>
|
||||
|
||||
* Version 23.2 released.
|
||||
|
||||
2010-02-19 Eli Zaretskii <eliz@gnu.org>
|
||||
|
||||
* INSTALL: Remove a CVS-specific note. Update for latest versions
|
||||
|
|
|
@ -1,3 +1,7 @@
|
|||
2010-05-07 Chong Yidong <cyd@stupidchicken.com>
|
||||
|
||||
* Version 23.2 released.
|
||||
|
||||
2010-01-11 Glenn Morris <rgm@gnu.org>
|
||||
|
||||
* Cocoa/Emacs.base/Contents/Info.plist:
|
||||
|
|
|
@ -553,7 +553,7 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
|
|||
<key>CFBundleExecutable</key>
|
||||
<string>Emacs</string>
|
||||
<key>CFBundleGetInfoString</key>
|
||||
<string>Emacs 23.1.97 Copyright (C) 2010 Free Software Foundation, Inc.</string>
|
||||
<string>Emacs 23.2 Copyright (C) 2010 Free Software Foundation, Inc.</string>
|
||||
<key>CFBundleIconFile</key>
|
||||
<string>Emacs.icns</string>
|
||||
<key>CFBundleIdentifier</key>
|
||||
|
@ -566,7 +566,7 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
|
|||
<string>APPL</string>
|
||||
<!-- This should be the emacs version number. -->
|
||||
<key>CFBundleShortVersionString</key>
|
||||
<string>23.1.97</string>
|
||||
<string>23.2</string>
|
||||
<key>CFBundleSignature</key>
|
||||
<string>EMAx</string>
|
||||
<!-- This SHOULD be a build number. -->
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
/* Localized versions of Info.plist keys */
|
||||
|
||||
CFBundleName = "Emacs";
|
||||
CFBundleShortVersionString = "Version 23.1.97";
|
||||
CFBundleGetInfoString = "Emacs version 23.1.97, NS Windowing";
|
||||
CFBundleShortVersionString = "Version 23.2";
|
||||
CFBundleGetInfoString = "Emacs version 23.2, NS Windowing";
|
||||
NSHumanReadableCopyright = "Copyright (C) 2010 Free Software Foundation, Inc.";
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
[Desktop Entry]
|
||||
Encoding=UTF-8
|
||||
Type=Application
|
||||
Version=23.1.97
|
||||
Version=23.2
|
||||
Categories=GNUstep
|
||||
Name=Emacs
|
||||
Comment=GNU Emacs for NeXT/Open/GNUstep and OS X
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
ApplicationDescription = "GNU Emacs for GNUstep / OS X";
|
||||
ApplicationIcon = emacs.tiff;
|
||||
ApplicationName = Emacs;
|
||||
ApplicationRelease = "23.1.97";
|
||||
ApplicationRelease = "23.2";
|
||||
Authors = (
|
||||
"Adrian Robert (GNUstep)",
|
||||
"Christophe de Dinechin (MacOS X)",
|
||||
|
@ -13,7 +13,7 @@
|
|||
);
|
||||
Copyright = "Copyright (C) 2010 Free Software Foundation, Inc.";
|
||||
CopyrightDescription = "Released under the GNU General Public License Version 3 or later";
|
||||
FullVersionID = "Emacs 23.1.97, NS Windowing";
|
||||
FullVersionID = "Emacs 23.2, NS Windowing";
|
||||
NSExecutable = Emacs;
|
||||
NSIcon = emacs.tiff;
|
||||
NSPrincipalClass = NSApplication;
|
||||
|
|
|
@ -1,3 +1,7 @@
|
|||
2010-05-07 Chong Yidong <cyd@stupidchicken.com>
|
||||
|
||||
* Version 23.2 released.
|
||||
|
||||
2010-01-13 Martin Rudalics <rudalics@gmx.at>
|
||||
|
||||
* emacsclient.rc: Fix format of "LegalCopyright" value.
|
||||
|
|
|
@ -7,8 +7,8 @@ Emacs ICON icons\emacs.ico
|
|||
#endif
|
||||
|
||||
VS_VERSION_INFO VERSIONINFO
|
||||
FILEVERSION 23,1,97,0
|
||||
PRODUCTVERSION 23,1,97,0
|
||||
FILEVERSION 23,2,0,0
|
||||
PRODUCTVERSION 23,2,0,0
|
||||
FILEFLAGSMASK 0x3FL
|
||||
#ifdef EMACSDEBUG
|
||||
FILEFLAGS 0x1L
|
||||
|
@ -25,12 +25,12 @@ BEGIN
|
|||
BEGIN
|
||||
VALUE "CompanyName", "Free Software Foundation\0"
|
||||
VALUE "FileDescription", "GNU Emacs: The extensible self-documenting text editor\0"
|
||||
VALUE "FileVersion", "23, 1, 97, 0\0"
|
||||
VALUE "FileVersion", "23, 2, 0, 0\0"
|
||||
VALUE "InternalName", "Emacs\0"
|
||||
VALUE "LegalCopyright", "Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010\0"
|
||||
VALUE "OriginalFilename", "emacs.exe"
|
||||
VALUE "ProductName", "Emacs\0"
|
||||
VALUE "ProductVersion", "23, 1, 97, 0\0"
|
||||
VALUE "ProductVersion", "23, 2, 0, 0\0"
|
||||
VALUE "OLESelfRegister", "\0"
|
||||
END
|
||||
END
|
||||
|
|
|
@ -5,8 +5,8 @@ Emacs ICON icons\emacs.ico
|
|||
#endif
|
||||
|
||||
VS_VERSION_INFO VERSIONINFO
|
||||
FILEVERSION 23,1,97,0
|
||||
PRODUCTVERSION 23,1,97,0
|
||||
FILEVERSION 23,2,0,0
|
||||
PRODUCTVERSION 23,2,0,0
|
||||
FILEFLAGSMASK 0x3FL
|
||||
#ifdef EMACSDEBUG
|
||||
FILEFLAGS 0x1L
|
||||
|
@ -23,12 +23,12 @@ BEGIN
|
|||
BEGIN
|
||||
VALUE "CompanyName", "Free Software Foundation\0"
|
||||
VALUE "FileDescription", "GNU EmacsClient: Client for the extensible self-documenting text editor\0"
|
||||
VALUE "FileVersion", "23, 1, 97, 0\0"
|
||||
VALUE "FileVersion", "23, 2, 0, 0\0"
|
||||
VALUE "InternalName", "EmacsClient\0"
|
||||
VALUE "LegalCopyright", "Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010\0"
|
||||
VALUE "OriginalFilename", "emacsclientw.exe"
|
||||
VALUE "ProductName", "EmacsClient\0"
|
||||
VALUE "ProductVersion", "23, 1, 97, 0\0"
|
||||
VALUE "ProductVersion", "23, 2, 0, 0\0"
|
||||
VALUE "OLESelfRegister", "\0"
|
||||
END
|
||||
END
|
||||
|
|
|
@ -1,3 +1,7 @@
|
|||
2010-05-07 Chong Yidong <cyd@stupidchicken.com>
|
||||
|
||||
* Version 23.2 released.
|
||||
|
||||
2009-06-21 Chong Yidong <cyd@stupidchicken.com>
|
||||
|
||||
* Branch for 23.1.
|
||||
|
|
|
@ -1,3 +1,7 @@
|
|||
2010-05-07 Chong Yidong <cyd@stupidchicken.com>
|
||||
|
||||
* Version 23.2 released.
|
||||
|
||||
2010-04-30 Andreas Schwab <schwab@linux-m68k.org>
|
||||
|
||||
* composite.c (autocmp_chars): Save point as marker before calling
|
||||
|
|
|
@ -1,3 +1,7 @@
|
|||
2010-05-07 Chong Yidong <cyd@stupidchicken.com>
|
||||
|
||||
* Version 23.2 released.
|
||||
|
||||
2010-03-29 Chong Yidong <cyd@stupidchicken.com>
|
||||
|
||||
* cedet/semantic-ia-utest.el
|
||||
|
|
Loading…
Add table
Reference in a new issue