unofficial mirror of emacs-devel@gnu.org 
 help / color / mirror / code / Atom feed
From: Alan Shutko <ats@acm.org>
Cc: emacs-devel@gnu.org
Subject: Re: appt.el fix: don't use prin1-to-string
Date: Tue, 13 Aug 2002 20:26:43 -0400	[thread overview]
Message-ID: <8765yewaik.fsf@wesley.springies.com> (raw)
In-Reply-To: <200208132246.g7DMkOC07166@wijiji.santafe.edu>

Richard Stallman <rms@gnu.org> writes:

> I think the reason for using prin1-to-string in the first of these
> cases is to quote any doublequotes in the string itself.
> In the second case, not calling it seems to be correct.

That makes sense.  Here's a new patch which just removes text
properties before printing it in the prompt, but avoids the
prin1-to-string in appt-make-list.

2002-08-13  Alan Shutko  <ats@acm.org>

	* calendar/appt.el (appt-delete): Remove properties before calling
	prin1-to-string.
	(appt-make-list): Remove prin1-to-string calls (and substrings
	around them) since strings may have properties.


Index: lisp/calendar/appt.el
===================================================================
RCS file: /cvsroot/emacs/emacs/lisp/calendar/appt.el,v
retrieving revision 1.44
diff -u -r1.44 appt.el
--- lisp/calendar/appt.el	12 Aug 2002 17:21:06 -0000	1.44
+++ lisp/calendar/appt.el	14 Aug 2002 00:25:09 -0000
@@ -454,8 +454,13 @@
   (let* ((tmp-msg-list appt-time-msg-list))
     (while tmp-msg-list
       (let* ((element (car tmp-msg-list))
-             (prompt-string (concat "Delete " 
-                                    (prin1-to-string (car (cdr element))) 
+	     (entry (car (cdr element)))
+	     (prompt-string (concat "Delete " 
+				    (prin1-to-string 
+				     (progn
+				       (set-text-properties 0 (length entry)
+							    nil entry)
+				       entry))
                                     " from list? "))
              (test-input (y-or-n-p prompt-string)))
         (setq tmp-msg-list (cdr tmp-msg-list))
@@ -512,9 +517,7 @@
 	      (while (and entry-list 
 			  (calendar-date-equal 
 			   (calendar-current-date) (car (car entry-list))))
-		(let ((time-string (substring (prin1-to-string 
-					       (cadr (car entry-list))) 1 -1)))
-
+		(let ((time-string (cadr (car entry-list))))
 		  (while (string-match
 			  "\\([0-9]?[0-9]:[0-9][0-9]\\(am\\|pm\\)?\\).*"
 			  time-string)


-- 
Alan Shutko <ats@acm.org> - In a variety of flavors!
The darn thing works better if you plug it in

  reply	other threads:[~2002-08-14  0:26 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2002-08-12 21:26 appt.el fix: don't use prin1-to-string Alan Shutko
2002-08-13 22:46 ` Richard Stallman
2002-08-14  0:26   ` Alan Shutko [this message]
2002-08-14 14:35     ` Stefan Monnier
2002-08-14 18:44       ` Alan Shutko
2002-08-14 23:13     ` Richard Stallman

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

  List information: https://www.gnu.org/software/emacs/

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=8765yewaik.fsf@wesley.springies.com \
    --to=ats@acm.org \
    --cc=emacs-devel@gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/emacs.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).