From e88acd1d89ff7ea4ca08d16f9da206e906685ae9 Mon Sep 17 00:00:00 2001 From: Michael Olson Date: Sun, 13 Aug 2006 02:56:16 +0000 Subject: [PATCH] Make second release candidate (3.02.92) available. * lisp/muse-publish.el (muse-publish-markup-url): Pass original URL as an argument. This fixes the "nil" description for bare URLs that was in 3.02.91. Nothing like finding a bug just after completing the announcement of a release. * lisp/muse.el (muse-version): Set version to 3.02.92 (3.03 RC2). git-archimport-id: mwolson@gnu.org--2006/muse--main--1.0--patch-193 --- ChangeLog | 5 +++++ Makefile.defs | 2 +- lisp/muse-publish.el | 3 ++- lisp/muse.el | 4 ++-- muse.texi | 2 +- 5 files changed, 11 insertions(+), 5 deletions(-) diff --git a/ChangeLog b/ChangeLog index 62b38b8..36b30dc 100644 --- a/ChangeLog +++ b/ChangeLog @@ -37,8 +37,13 @@ use. (muse-publish-markup-header-footer-tags): Sync lisp tag with the latest changes. + (muse-publish-markup-url): Pass original URL as an argument. This + fixes the "nil" description for bare URLs that was in 3.02.91. + Nothing like finding a bug just after completing the announcement + of a release. * lisp/muse.el: Use defalias whenever convenient. + (muse-version): Set version to 3.02.92 (3.03 RC2). 2006-08-10 Michael Olson diff --git a/Makefile.defs b/Makefile.defs index 56e4c48..ec230f6 100644 --- a/Makefile.defs +++ b/Makefile.defs @@ -22,7 +22,7 @@ INSTALLINFO = install-info --info-dir=$(INFODIR) # Useful only for the maintainer PROJECT = muse DEBNAME = muse-el -VERSION = 3.02.91 +VERSION = 3.02.92 MANUAL = muse LASTUPLOAD = 3.02.6-2 BUILDOPTS = diff --git a/lisp/muse-publish.el b/lisp/muse-publish.el index 391e0d5..fdf9477 100644 --- a/lisp/muse-publish.el +++ b/lisp/muse-publish.el @@ -1406,7 +1406,8 @@ the cadr is the page name, and the cddr is the anchor." (defun muse-publish-markup-url () (unless (or (eq (char-before (match-beginning 0)) ?\") (eq (char-after (match-end 0)) ?\")) - (muse-publish-insert-url (match-string 0)))) + (let ((url (match-string 0))) + (muse-publish-insert-url url nil url)))) ;; Default publishing tags diff --git a/lisp/muse.el b/lisp/muse.el index bce8536..c6a5afa 100644 --- a/lisp/muse.el +++ b/lisp/muse.el @@ -4,7 +4,7 @@ ;; Emacs Lisp Archive Entry ;; Filename: muse.el -;; Version: 3.02.91 (3.03 RC2) +;; Version: 3.02.92 (3.03 RC2) ;; Date: Fri 7-Apr-2006 ;; Keywords: hypermedia ;; Author: John Wiegley (johnw AT gnu DOT org) @@ -45,7 +45,7 @@ ;;; Code: -(defvar muse-version "3.02.91" +(defvar muse-version "3.02.92" "The version of Muse currently loaded") (defun muse-version (&optional insert) diff --git a/muse.texi b/muse.texi index bfaf751..7f2a9b7 100644 --- a/muse.texi +++ b/muse.texi @@ -12,7 +12,7 @@ @syncodeindex fn cp @copying -This manual is for the Emacs Muse version 3.02.91 (3.03 RC2). +This manual is for the Emacs Muse version 3.02.92 (3.03 RC2). Copyright @copyright{} 2004, 2005, 2006 Free Software Foundation, Inc. -- 2.11.4.GIT