
On Fri, 2 Jul 2004 11:58:22 +0200, Lennart Staflin <lenst@lysator.liu.se> said:
Lennart> I would like to suggest the following change to hyperspec.el Lennart> --- hyperspec.el 30 Jun 2004 19:48:40 +0200 1.5 Lennart> +++ hyperspec.el 02 Jul 2004 11:51:16 +0200 Lennart> @@ -1135,10 +1135,9 @@ Lennart> "") Lennart> ".htm"))) Lennart> -(defun common-lisp-hyperpsec-section-4.0 (indices) Lennart> - (let ((string (format "%sBody/sec%s_" Lennart> - common-lisp-hyperspec-root Lennart> - (pop indices)))) Lennart> +(defun common-lisp-hyperspec-section-4.0 (indices) Lennart> + (let ((string (format "%sBody/sec_" Lennart> + common-lisp-hyperspec-root))) Lennart> (concat string Lennart> (mapconcat (lambda (n) Lennart> (format "%d" n)) Lennart> That section naming works with the hyperspec copy I got. I hope it's Lennart> the same for all copies. That the function name is misspelled suggests Lennart> that that function hasn't been tested much. Yes, that's the right format for the numbered sections in version 4.0. __Martin