From 955a543f9ac3bb29b88a42d0520ac68324c2f6fa Mon Sep 17 00:00:00 2001 From: Eduardo Chappa Date: Sun, 15 Mar 2015 22:39:54 -0600 Subject: * new version 2.20.3 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * SMIME: If a message contains a RFC822 atachment that is signed/decrypted add the ability to view its SMIME information. * SMIME: The ^E command that gives information on the certificate is only available for messages that have a signed or encrypted part. * Fix vulnerability in regex library. This only affects those who use this library, such as the windows version of Alpine. See http://www.kb.cert.org/vuls/id/695940. * HTML: Add support for decoding entities in hexadecimal notation. Suggested by Tulipánt Gergely. * Pico: Add the ability to search for strings in the beginning or end of a line. In the search menu, pressing Ctrl-^ toggles the prompt to search for a string at the beginning of a line. Another press of Ctrl-^ toggles the prompt to search for a string at the end of a line, and pressing Ctrl-^ one more time searches for the string anywhere in the text. --- pico/estruct.h | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'pico/estruct.h') diff --git a/pico/estruct.h b/pico/estruct.h index 410dfc02..ff3261c0 100644 --- a/pico/estruct.h +++ b/pico/estruct.h @@ -84,6 +84,13 @@ #define CFFLBF 0x0010 /* Last cmd was full buf fill */ #define CFFLPA 0x0020 /* Last cmd was paragraph fill */ +/* Constants for search type */ +#define SR_FORWARD 0x0001 /* search forward */ +#define SR_BACKWRD 0x0010 /* search backward */ +#define SR_BEGLINE 0x0100 /* search pattern at beginning of line */ +#define SR_ENDLINE 0x1000 /* search pattern at end of line */ + + /* * macros to help filter character input */ -- cgit v1.2.3-54-g00ecf