Now on revision 108350. ------------------------------------------------------------ revno: 108350 committer: Glenn Morris branch nick: trunk timestamp: Wed 2012-05-23 23:53:08 -0700 message: Move some rmail variables from paths.el to rmail.el Ref eg http://lists.gnu.org/archive/html/emacs-devel/2004-10/msg00620.html * paths.el (rmail-file-name, rmail-spool-directory): Move from here... * mail/rmail.el (rmail-file-name, rmail-spool-directory): ... to here. Make the latter a defcustom, with a delayed initialization. diff: === modified file 'lisp/ChangeLog' --- lisp/ChangeLog 2012-05-24 06:42:26 +0000 +++ lisp/ChangeLog 2012-05-24 06:53:08 +0000 @@ -1,5 +1,9 @@ 2012-05-24 Glenn Morris + * paths.el (rmail-file-name, rmail-spool-directory): Move from here... + * mail/rmail.el (rmail-file-name, rmail-spool-directory): ... to here. + Make the latter a defcustom, with a delayed initialization. + * paths.el (gnus-nntp-service, gnus-local-organization): Remove. These were deleted from Gnus itself late 2010. === modified file 'lisp/mail/rmail.el' --- lisp/mail/rmail.el 2012-05-09 03:06:08 +0000 +++ lisp/mail/rmail.el 2012-05-24 06:53:08 +0000 @@ -100,8 +100,6 @@ "The current header display style choice, one of 'normal (selected headers) or 'full (all headers).") -;; rmail-spool-directory and rmail-file-name are defined in paths.el. - (defgroup rmail nil "Mail reader for Emacs." :group 'mail) @@ -143,6 +141,31 @@ :prefix "rmail-edit-" :group 'rmail) +;;;###autoload +(defcustom rmail-file-name (purecopy "~/RMAIL") + "Name of user's primary mail file." + :type 'string + :group 'rmail + :version "21.1") + +;;;###autoload +(defcustom rmail-spool-directory + (purecopy + (cond ((file-exists-p "/var/mail") + ;; SVR4 and recent BSD are said to use this. + ;; Rather than trying to know precisely which systems use it, + ;; let's assume this dir is never used for anything else. + "/var/mail/") + ;; Many GNU/Linux systems use this name. + ((file-exists-p "/var/spool/mail") "/var/spool/mail/") + ((memq system-type '(hpux usg-unix-v irix)) "/usr/mail/") + (t "/usr/spool/mail/"))) + "Name of directory used by system mailer for delivering new mail. +Its name should end with a slash." + :initialize 'custom-initialize-delay + :type 'directory + :group 'rmail) + (defcustom rmail-movemail-program nil "If non-nil, the file name of the `movemail' program." :group 'rmail-retrieve === modified file 'lisp/paths.el' --- lisp/paths.el 2012-05-24 06:42:26 +0000 +++ lisp/paths.el 2012-05-24 06:53:08 +0000 @@ -123,27 +123,6 @@ The name of the host running an NNTP server. The null string means use the local host as the server site.") -(defcustom rmail-file-name (purecopy "~/RMAIL") "\ -Name of user's primary mail file." - :type 'string - :group 'rmail - :version "21.1") - -(defvar rmail-spool-directory - (purecopy - (cond ((file-exists-p "/var/mail") - ;; SVR4 and recent BSD are said to use this. - ;; Rather than trying to know precisely which systems use it, - ;; let's assume this dir is never used for anything else. - "/var/mail/") - ;; Many GNU/Linux systems use this name. - ((file-exists-p "/var/spool/mail") - "/var/spool/mail/") - ((memq system-type '(hpux usg-unix-v irix)) - "/usr/mail/") - (t "/usr/spool/mail/"))) - "Name of directory used by system mailer for delivering new mail. -Its name should end with a slash.") (defcustom remote-shell-program (purecopy ------------------------------------------------------------ revno: 108349 committer: Glenn Morris branch nick: trunk timestamp: Wed 2012-05-23 23:42:26 -0700 message: * paths.el (gnus-nntp-service, gnus-local-organization): Remove. These were deleted from Gnus itself late 2010. diff: === modified file 'lisp/ChangeLog' --- lisp/ChangeLog 2012-05-22 18:31:19 +0000 +++ lisp/ChangeLog 2012-05-24 06:42:26 +0000 @@ -1,3 +1,8 @@ +2012-05-24 Glenn Morris + + * paths.el (gnus-nntp-service, gnus-local-organization): Remove. + These were deleted from Gnus itself late 2010. + 2012-05-22 Juanma Barranquero * progmodes/which-func.el (which-func-ff-hook): === modified file 'lisp/paths.el' --- lisp/paths.el 2012-01-19 07:21:25 +0000 +++ lisp/paths.el 2012-05-24 06:42:26 +0000 @@ -1,6 +1,6 @@ ;;; paths.el --- define pathnames for use by various Emacs commands -*- no-byte-compile: t -*- -;; Copyright (C) 1986, 1988, 1994, 1999-2012 Free Software Foundation, Inc. +;; Copyright (C) 1986, 1988, 1994, 1999-2012 Free Software Foundation, Inc. ;; Maintainer: FSF ;; Keywords: internal @@ -123,15 +123,6 @@ The name of the host running an NNTP server. The null string means use the local host as the server site.") -(defvar gnus-nntp-service (purecopy "nntp") "\ -NNTP service name, usually \"nntp\" or 119. -Go to a local news spool if its value is nil, in which case `gnus-nntp-server' -should be set to `(system-name)'.") - -(defvar gnus-local-organization nil "\ -*The name of your organization, as a string. -The `ORGANIZATION' environment variable is used instead if defined.") - (defcustom rmail-file-name (purecopy "~/RMAIL") "\ Name of user's primary mail file." :type 'string ------------------------------------------------------------ revno: 108348 committer: Glenn Morris branch nick: trunk timestamp: Wed 2012-05-23 23:38:41 -0700 message: Do not set a local value for version-control in version.el There's no reason to; this file isn't auto-generated or anything like that. diff: === modified file 'lisp/version.el' --- lisp/version.el 2012-04-20 05:57:38 +0000 +++ lisp/version.el 2012-05-24 06:38:41 +0000 @@ -1,4 +1,4 @@ -;;; version.el --- record version number of Emacs +;;; version.el --- record version number of Emacs -*- no-byte-compile: t -*- ;; Copyright (C) 1985, 1992, 1994-1995, 1999-2012 ;; Free Software Foundation, Inc. @@ -121,9 +121,4 @@ (purecopy (concat "\n$Id: " (subst-char-in-string ?\n ?\s (emacs-version)) " $\n")) -;; Local Variables: -;; version-control: never -;; no-byte-compile: t -;; End: - ;;; version.el ends here ------------------------------------------------------------ revno: 108347 author: Dmitry Antipov committer: Paul Eggert branch nick: trunk timestamp: Wed 2012-05-23 23:13:51 -0700 message: * src/window.h (clip_changed): Remove useless declaration. diff: === modified file 'src/ChangeLog' --- src/ChangeLog 2012-05-22 18:31:19 +0000 +++ src/ChangeLog 2012-05-24 06:13:51 +0000 @@ -1,3 +1,7 @@ +2012-05-24 Dmitry Antipov + + * window.h (clip_changed): Remove useless declaration. + 2012-05-22 Juanma Barranquero * makefile.w32-in: Follow-up to revno:108341. === modified file 'src/window.h' --- src/window.h 2012-03-12 06:34:32 +0000 +++ src/window.h 2012-05-24 06:13:51 +0000 @@ -852,11 +852,6 @@ extern int update_mode_lines; -/* Nonzero if BEGV - BEG or Z - ZV of current buffer has changed since - last redisplay that finished. */ - -extern int clip_changed; - /* Nonzero if window sizes or contents have changed since last redisplay that finished */ ------------------------------------------------------------ revno: 108346 committer: Glenn Morris branch nick: trunk timestamp: Wed 2012-05-23 06:17:31 -0400 message: Auto-commit of generated files. diff: === modified file 'autogen/Makefile.in' --- autogen/Makefile.in 2012-05-22 10:17:27 +0000 +++ autogen/Makefile.in 2012-05-23 10:17:31 +0000 @@ -535,7 +535,6 @@ MAKEINFO = @MAKEINFO@ MKDEPDIR = @MKDEPDIR@ MKDIR_P = @MKDIR_P@ -M_FILE = @M_FILE@ NEXT_AS_FIRST_DIRECTIVE_GETOPT_H = @NEXT_AS_FIRST_DIRECTIVE_GETOPT_H@ NEXT_AS_FIRST_DIRECTIVE_INTTYPES_H = @NEXT_AS_FIRST_DIRECTIVE_INTTYPES_H@ NEXT_AS_FIRST_DIRECTIVE_SIGNAL_H = @NEXT_AS_FIRST_DIRECTIVE_SIGNAL_H@ === modified file 'autogen/config.in' --- autogen/config.in 2012-05-22 10:17:27 +0000 +++ autogen/config.in 2012-05-23 10:17:31 +0000 @@ -1226,9 +1226,6 @@ declarations. Define as empty for no equivalent. */ #undef __restrict_arr -/* Define to the used machine dependent file. */ -#undef config_machfile - /* Define to the used os dependent file. */ #undef config_opsysfile @@ -1345,11 +1342,8 @@ #define subprocesses -/* Include the os and machine dependent files. */ +/* Include the os dependent file. */ #include config_opsysfile -#ifdef config_machfile -# include config_machfile -#endif /* GNUstep needs a bit more pure memory. Of the existing knobs, SYSTEM_PURESIZE_EXTRA seems like the least likely to cause problems. @@ -1373,34 +1367,6 @@ #endif #endif -/* These default definitions are good for almost all machines. - Any exceptions should override them in m/MACHINE.h. - They must be usable in preprocessor conditionals. */ - -#ifndef BITS_PER_CHAR -#define BITS_PER_CHAR 8 -#endif - -#ifndef BITS_PER_SHORT -#define BITS_PER_SHORT 16 -#endif - -#ifndef BITS_PER_INT -#define BITS_PER_INT 32 -#endif - -#ifndef BITS_PER_LONG -#ifdef _LP64 -#define BITS_PER_LONG 64 -#else -#define BITS_PER_LONG 32 -#endif -#endif - -#if !defined BITS_PER_LONG_LONG && HAVE_LONG_LONG_INT -#define BITS_PER_LONG_LONG 64 -#endif - #include #include === modified file 'autogen/configure' --- autogen/configure 2012-05-22 10:17:27 +0000 +++ autogen/configure 2012-05-23 10:17:31 +0000 @@ -1086,7 +1086,6 @@ ns_appbindir ns_appdir S_FILE -M_FILE X_TOOLKIT_TYPE GNUSTEP_CFLAGS C_SWITCH_X_SITE @@ -2381,45 +2380,6 @@ } # ac_fn_c_check_header_compile -# ac_fn_c_check_decl LINENO SYMBOL VAR -# ------------------------------------ -# Tests whether SYMBOL is declared, setting cache variable VAR accordingly. -ac_fn_c_check_decl () -{ - as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack - { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $2 is declared" >&5 -$as_echo_n "checking whether $2 is declared... " >&6; } -if { as_var=$3; eval "test \"\${$as_var+set}\" = set"; }; then : - $as_echo_n "(cached) " >&6 -else - cat confdefs.h - <<_ACEOF >conftest.$ac_ext -/* end confdefs.h. */ -$4 -int -main () -{ -#ifndef $2 - (void) $2; -#endif - - ; - return 0; -} -_ACEOF -if ac_fn_c_try_compile "$LINENO"; then : - eval "$3=yes" -else - eval "$3=no" -fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -fi -eval ac_res=\$$3 - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 -$as_echo "$ac_res" >&6; } - eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;} - -} # ac_fn_c_check_decl - # ac_fn_c_try_link LINENO # ----------------------- # Try to link conftest.$ac_ext, and return whether this succeeded. @@ -2466,6 +2426,45 @@ } # ac_fn_c_try_link +# ac_fn_c_check_decl LINENO SYMBOL VAR +# ------------------------------------ +# Tests whether SYMBOL is declared, setting cache variable VAR accordingly. +ac_fn_c_check_decl () +{ + as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack + { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $2 is declared" >&5 +$as_echo_n "checking whether $2 is declared... " >&6; } +if { as_var=$3; eval "test \"\${$as_var+set}\" = set"; }; then : + $as_echo_n "(cached) " >&6 +else + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +$4 +int +main () +{ +#ifndef $2 + (void) $2; +#endif + + ; + return 0; +} +_ACEOF +if ac_fn_c_try_compile "$LINENO"; then : + eval "$3=yes" +else + eval "$3=no" +fi +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +fi +eval ac_res=\$$3 + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 +$as_echo "$ac_res" >&6; } + eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;} + +} # ac_fn_c_check_decl + # ac_fn_c_check_header_preproc LINENO HEADER VAR # ---------------------------------------------- # Tests whether HEADER is present, setting the cache variable VAR accordingly. @@ -4304,8 +4303,8 @@ * ) srcdir="`(cd ${srcdir}; pwd)`" ;; esac -#### Given the configuration name, set machfile and opsysfile to the -#### names of the m/*.h and s/*.h files we should use. +#### Given the configuration name, set opsysfile to the +#### name of s/*.h file we should use. ### Canonicalize the configuration name. @@ -4387,13 +4386,11 @@ ### If you add support for a new configuration, add code to this ### switch statement to recognize your configuration name and select -### the appropriate operating system and machine description files. +### the appropriate operating system file. -### You would hope that you could choose an m/*.h file pretty much -### based on the machine portion of the configuration name, and an s/*.h +### You would hope that you could choose an s/*.h ### file based on the operating system portion. However, it turns out -### that each m/*.h file is pretty manufacturer-specific - for -### example mips.h is MIPS +### that each s/*.h file is pretty manufacturer-specific. ### So we basically have to have a special case for each ### configuration name. ### @@ -4403,82 +4400,40 @@ ### prepared to handle anything reasonably. If version numbers ### matter, be sure /etc/MACHINES says something about it. -machine='' opsys='' unported=no +opsys='' unported=no case "${canonical}" in ## GNU/Linux and similar ports *-*-linux* ) opsys=gnu-linux - case ${canonical} in - alpha*) machine=alpha ;; - s390x-*) machine=ibms390x ;; - powerpc*) machine=macppc ;; - sparc*) machine=sparc ;; - ia64*) machine=ia64 ;; - m68k*) machine=m68k ;; - x86_64*) machine=amdx86-64 ;; - esac ;; ## FreeBSD ports *-*-freebsd* ) opsys=freebsd - case "${canonical}" in - alpha*) machine=alpha ;; - amd64-*|x86_64-*) machine=amdx86-64 ;; - ia64-*) machine=ia64 ;; - i[3456]86-*) machine=intel386 ;; - powerpc-*) machine=macppc ;; - sparc-*) machine=sparc ;; - sparc64-*) machine=sparc ;; - esac ;; ## FreeBSD kernel + glibc based userland *-*-kfreebsd*gnu* ) opsys=gnu-kfreebsd - case "${canonical}" in - alpha*) machine=alpha ;; - amd64-*|x86_64-*) machine=amdx86-64 ;; - ia64-*) machine=ia64 ;; - i[3456]86-*) machine=intel386 ;; - powerpc-*) machine=macppc ;; - sparc-*) machine=sparc ;; - sparc64-*) machine=sparc ;; - esac ;; ## NetBSD ports *-*-netbsd* ) opsys=netbsd - case "${canonical}" in - alpha*) machine=alpha ;; - x86_64-*) machine=amdx86-64 ;; - i[3456]86-*) machine=intel386 ;; - m68k-*) machine=m68k ;; - powerpc-*) machine=macppc ;; - sparc*-) machine=sparc ;; - esac ;; ## OpenBSD ports *-*-openbsd* ) opsys=openbsd - case "${canonical}" in - alpha*) machine=alpha ;; - x86_64-*) machine=amdx86-64 ;; - i386-*) machine=intel386 ;; - powerpc-*) machine=macppc ;; - sparc*) machine=sparc ;; - esac ;; ## Apple Darwin / Mac OS X *-apple-darwin* ) case "${canonical}" in - i[3456]86-* ) machine=intel386 ;; - powerpc-* ) machine=macppc ;; - x86_64-* ) machine=amdx86-64 ;; + i[3456]86-* ) ;; + powerpc-* ) ;; + x86_64-* ) ;; * ) unported=yes ;; esac opsys=darwin @@ -4501,16 +4456,16 @@ ## IBM machines rs6000-ibm-aix4.[23]* ) - machine=ibmrs6000 opsys=aix4-2 + opsys=aix4-2 ;; powerpc-ibm-aix4.[23]* ) - machine=ibmrs6000 opsys=aix4-2 + opsys=aix4-2 ;; rs6000-ibm-aix[56]* ) - machine=ibmrs6000 opsys=aix4-2 + opsys=aix4-2 ;; powerpc-ibm-aix[56]* ) - machine=ibmrs6000 opsys=aix4-2 + opsys=aix4-2 ;; ## Silicon Graphics machines @@ -4528,9 +4483,9 @@ | i[3456]86-*-solaris2* | i[3456]86-*-sunos5* \ | x86_64-*-solaris2* | x86_64-*-sunos5*) case "${canonical}" in - i[3456]86-*-* ) machine=intel386 ;; - amd64-*-*|x86_64-*-*) machine=amdx86-64 ;; - sparc* ) machine=sparc ;; + i[3456]86-*-* ) ;; + amd64-*-*|x86_64-*-*) ;; + sparc* ) ;; * ) unported=yes ;; esac case "${canonical}" in @@ -4562,7 +4517,6 @@ ## Intel 386 machines where we don't care about the manufacturer. i[3456]86-*-* ) - machine=intel386 case "${canonical}" in *-cygwin ) opsys=cygwin ;; *-darwin* ) opsys=darwin ;; @@ -4600,11 +4554,6 @@ Check \`etc/MACHINES' for recognized configuration names." "$LINENO" 5 fi -if test -n "$machine"; then - machfile="m/${machine}.h" -else - machfile= -fi opsysfile="s/${opsys}.h" @@ -7683,23 +7632,6 @@ -## Although we're running on an amd64 kernel, we're actually compiling for -## the x86 architecture. The user should probably have provided an -## explicit --build to `configure', but if everything else than the kernel -## is running in i386 mode, we can help them out. -if test "$machine" = "amdx86-64"; then - ac_fn_c_check_decl "$LINENO" "i386" "ac_cv_have_decl_i386" "$ac_includes_default" -if test "x$ac_cv_have_decl_i386" = x""yes; then : - -fi - - if test "$ac_cv_have_decl_i386" = "yes"; then - canonical=`echo "$canonical" | sed -e 's/^amd64/i386/' -e 's/^x86_64/i386/'` - machine=intel386 - machfile="m/${machine}.h" - fi -fi - # Extract the first word of "install-info", so it can be a program name with args. set dummy install-info; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 @@ -8075,7 +8007,8 @@ C_SWITCH_MACHINE= -if test "$machine" = "alpha"; then +case $canonical in + alpha*) ac_fn_c_check_decl "$LINENO" "__ELF__" "ac_cv_have_decl___ELF__" "$ac_includes_default" if test "x$ac_cv_have_decl___ELF__" = x""yes; then : @@ -8095,7 +8028,8 @@ else UNEXEC_OBJ=unexalpha.o fi -fi + ;; +esac @@ -10066,7 +10000,7 @@ yes ) HAVE_MENUS=yes ;; esac -# Do the opsystem or machine files prohibit the use of the GNU malloc? +# Does the opsystem file prohibit the use of the GNU malloc? # Assume not, until told otherwise. GNU_MALLOC=yes @@ -15837,11 +15771,6 @@ ## Used in lwlib/Makefile.in. -if test -n "${machfile}"; then - M_FILE="\$(srcdir)/${machfile}" -else - M_FILE= -fi S_FILE="\$(srcdir)/${opsysfile}" @@ -15852,7 +15781,6 @@ - cat >>confdefs.h <<_ACEOF #define EMACS_CONFIGURATION "${canonical}" _ACEOF @@ -15862,13 +15790,6 @@ #define EMACS_CONFIG_OPTIONS "${ac_configure_args}" _ACEOF -if test -n "$machfile"; then - -cat >>confdefs.h <<_ACEOF -#define config_machfile "${machfile}" -_ACEOF - -fi cat >>confdefs.h <<_ACEOF #define config_opsysfile "${opsysfile}" @@ -22368,8 +22289,7 @@ ## #ifndef LD_SWITCH_SYSTEM ## #if !defined (__GNUC__) && ((defined (BSD_SYSTEM) && !defined (COFF))) ## Since all the *bsds define LD_SWITCH_SYSTEM, this simplifies to: - ## not using gcc, darwin system not on an alpha (ie darwin, since - ## darwin + alpha does not occur). + ## not using gcc, darwin. ## Because this was done in src/Makefile.in, the resulting part of ## LD_SWITCH_SYSTEM was not used in configure (ie, in ac_link). ## It therefore seems cleaner to put this in LD_SWITCH_SYSTEM_TEMACS, @@ -22409,12 +22329,12 @@ ## will also work on earlier NetBSD releases. netbsd|openbsd) LD_FIRSTFLAG="-nostartfiles" ;; - ## macpcc: NAKAJI Hiroyuki says + ## powerpc*: NAKAJI Hiroyuki says ## MkLinux/LinuxPPC needs this. - ## ibms390x only supports opsys = gnu-linux so it can be added here. + ## s390x-* only supports opsys = gnu-linux so it can be added here. gnu-*) - case "$machine" in - macppc|ibms390x) LD_FIRSTFLAG="-nostdlib" ;; + case "$canonical" in + powerpc*|s390x-*) LD_FIRSTFLAG="-nostdlib" ;; esac ;; esac @@ -22428,7 +22348,7 @@ ## The system files defining neither ORDINARY_LINK nor LD_FIRSTFLAG are: -## freebsd, gnu-* not on macppc|ibms390x. +## freebsd, gnu-* not on powerpc*|s390x*. elif test "x$GCC" = "xyes" && test "x$LD_FIRSTFLAG" = "x"; then ## Versions of GCC >= 2.0 put their library, libgcc.a, in obscure @@ -22501,17 +22421,12 @@ USE_X_TOOLKIT=GTK fi -and_machfile= -if test -n "$machfile"; then - and_machfile=" and \`${machfile}'" -fi - echo " Configured for \`${canonical}'. Where should the build process find the source code? ${srcdir} - What operating system and machine description files should Emacs use? - \`${opsysfile}'${and_machfile} + What operating system file should Emacs use? + \`${opsysfile}' What compiler should emacs be built with? ${CC} ${CFLAGS} Should Emacs use the GNU version of malloc? ${GNU_MALLOC}${GNU_MALLOC_reason} Should Emacs use a relocating allocator for buffers? ${REL_ALLOC} ------------------------------------------------------------ revno: 108345 committer: Juanma Barranquero branch nick: trunk timestamp: Tue 2012-05-22 20:31:19 +0200 message: Fix ChangeLog typos. diff: === modified file 'doc/emacs/ChangeLog' --- doc/emacs/ChangeLog 2012-05-22 03:35:14 +0000 +++ doc/emacs/ChangeLog 2012-05-22 18:31:19 +0000 @@ -167,7 +167,7 @@ (Input Methods): Copyedits. Use "^" for the postfix example, because it is less confusing inside Info's `quotes'. - * custom.texi (Specifying File Variables): Fix "unibyte" description. + * custom.texi (Specifying File Variables): Fix "unibyte" description. Update for "Disabling Multibyte" node name change. * emacs.texi: Update for "Disabling Multibyte" node name change. === modified file 'doc/misc/ChangeLog' --- doc/misc/ChangeLog 2012-05-19 03:00:48 +0000 +++ doc/misc/ChangeLog 2012-05-22 18:31:19 +0000 @@ -642,7 +642,7 @@ * mh-e.texi (VERSION, EDITION, UPDATED, UPDATE-MONTH): Update for release 8.3. (Preface): Updated support information. - (From Bill Wohler): Reset text to original version. As a + (From Bill Wohler): Reset text to original version. As a historical quote, the tense should be correct in the time that it was written. @@ -659,11 +659,11 @@ 2011-08-15 Suvayu Ali (tiny change) - * org.texi (Images in LaTeX export): rewrite. + * org.texi (Images in LaTeX export): Rewrite. 2011-08-15 Bastien Guerry - * org.texi (Using the mapping API): mention 'region as a possible + * org.texi (Using the mapping API): Mention 'region as a possible scope for `org-map-entries'. 2011-08-15 Carsten Dominik @@ -672,7 +672,7 @@ 2011-08-15 Bastien Guerry - * org.texi (Template expansion): order template sequences in the + * org.texi (Template expansion): Order template sequences in the proper order. 2011-08-15 Eric Schulte @@ -686,11 +686,11 @@ 2011-08-15 Achim Gratz - * org.texi: document that both CLOCK_INTO_DRAWER and + * org.texi: Document that both CLOCK_INTO_DRAWER and LOG_INTO_DRAWER can be used to override the contents of variable org-clock-into-drawer (or if unset, org-log-into-drawer). - * org.texi: replace @xref->@pxref. + * org.texi: Replace @xref->@pxref. 2011-08-15 Eric Schulte @@ -714,7 +714,7 @@ 2011-08-15 Eric Schulte - * org.texi (Structure of code blocks): explicitly state that the + * org.texi (Structure of code blocks): Explicitly state that the behavior of multiple blocks of the same name is undefined 2011-08-15 Christian Egli @@ -838,7 +838,7 @@ 2011-08-15 Bastien Guerry - * org.texi (LaTeX and PDF export): add a note about a limitation + * org.texi (LaTeX and PDF export): Add a note about a limitation of the LaTeX export: the org file has to be properly structured. 2011-08-15 Bastien Guerry @@ -1648,7 +1648,7 @@ 2010-11-11 Eric Schulte - * org.texi: multi-line header arguments :PROPERTIES: :ID: + * org.texi: Multi-line header arguments :PROPERTIES: :ID: b77c8857-6c76-4ea9-8a61-ddc2648d96c4 :END:. 2010-11-11 Carsten Dominik === modified file 'lisp/ChangeLog' --- lisp/ChangeLog 2012-05-22 16:50:02 +0000 +++ lisp/ChangeLog 2012-05-22 18:31:19 +0000 @@ -3,7 +3,7 @@ * progmodes/which-func.el (which-func-ff-hook): Check against user-error, not error. - * emacs-lisp/edebug.el (top): Do not load or setup up loading of + * emacs-lisp/edebug.el (top): Do not load or set up loading of cl-specs.el, which no longer exists. 2012-05-22 Glenn Morris @@ -66,7 +66,7 @@ * calc/calc-lang.el (math-C-parse-bess, math-C-parse-fma): New functions. - (math-function-table): Add support for more C functions. + (math-function-table): Add support for more C functions. 2012-05-18 Agustín Martín Domingo === modified file 'src/ChangeLog' --- src/ChangeLog 2012-05-22 16:42:08 +0000 +++ src/ChangeLog 2012-05-22 18:31:19 +0000 @@ -58,7 +58,7 @@ 2012-05-20 Ken Brown * gmalloc.c (_free_internal_nolock, _realloc_internal_nolock) - [CYGWIN]: Cast ptr to (char *) before comparing to _heapbase. + [CYGWIN]: Cast ptr to (char *) before comparing to _heapbase. 2012-05-19 Ken Brown @@ -435,7 +435,7 @@ 2012-04-22 Paul Eggert Modernize and clean up gmalloc.c to assume C89 (Bug#9119). - * gmalloc.c: (_MALLOC_INTERNAL, _MALLOC_H, _PP, __ptr_t) + * gmalloc.c (_MALLOC_INTERNAL, _MALLOC_H, _PP, __ptr_t) (__malloc_size_t, __malloc_ptrdiff_t): Remove. All uses removed, replaced by the definiens if needed, since we can assume C89 or better now.