Skip to content

Commit d8e0ec6

Browse files
author
Jose Kahan
committed
JK: accesskey 'd' and 't' in messages
1 parent a24ab65 commit d8e0ec6

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

Changelog

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
Version Changes for Hypermail
22
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
3+
Jose Kahan (Oct 27, 2009)
4+
5+
- Added two new accesskeys in messages: 't' -> next message
6+
in thread, 'd' -> next message
7+
38
Jose Kahan (Oct 26, 2009)
49
- Updated hmrc.4 and hmrc.html to descrbie the new features.
510

src/print.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1651,7 +1651,7 @@ int print_links_up(FILE *fp, struct emailinfo *email, int pos, int in_thread_fil
16511651
ptr = convchars(email2->subject, email2->charset);
16521652
tmpptr= convchars(email2->name,email2->charset);
16531653
#endif
1654-
fprintf(fp, "[ <a href=\"%s\" title=\"%s: &quot;%s&quot;\">%s</a> ]\n",
1654+
fprintf(fp, "[ <a href=\"%s\" accesskey=\"d\" title=\"%s: &quot;%s&quot;\">%s</a> ]\n",
16551655
msg_href (email2, email, FALSE),
16561656
tmpptr, ptr ? ptr : "",
16571657
lang[MSG_NEXT_MESSAGE]);
@@ -1747,7 +1747,7 @@ int print_links_up(FILE *fp, struct emailinfo *email, int pos, int in_thread_fil
17471747
ptr = convchars(email_next_in_thread->subject, email_next_in_thread->charset);
17481748
tmpptr=convchars(email_next_in_thread->name,email_next_in_thread->charset);
17491749
#endif
1750-
fprintf(fp, "[ <a href=\"%s\" title=\"%s: &quot;%s&quot;\">%s</a> ]\n",
1750+
fprintf(fp, "[ <a href=\"%s\" accesskey=\"t\" title=\"%s: &quot;%s&quot;\">%s</a> ]\n",
17511751
href01(email, email_next_in_thread, in_thread_file, FALSE),
17521752
tmpptr, ptr,
17531753
lang[MSG_NEXT_IN_THREAD]);

0 commit comments

Comments
 (0)