File: ChangeLog

package info (click to toggle)
libsyntax-highlight-perl-improved-perl 1.01-8
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 424 kB
  • sloc: perl: 1,285; makefile: 2
file content (51 lines) | stat: -rw-r--r-- 1,473 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51

REVISIONS

  05-03-2004 David C.Y. Liu, Version 1.01

    *   Added 'our' to the keywords list.

    *   Fixed bug that prevented interpolation inside qq() quotes.

    *   Renamed to Syntax::Highlight::Perl::Improved.

  04-04-2001  Cory Johns

    *   Fixed problem with special characters not formatting inside of
        Here-Documents.

    *   Fixed bug causing hash variables to format inside of Here-
        Documents.

  03-30-2001  Cory Johns

    *   Fixed bug where quote-terminators were checked for inside of
        Here-Documents.

  03-29-2001  Cory Johns

    *   Moved token processing tests from _format_line() into
        _process_token() (where they should've been all along),
        generally making _format_line() more logical. Contemplating
        extrapolating the tokenizing and token loop into its own
        subroutine to avoid all the recursive calls.

    *   Fixed bug that caused special characters to be recognized
        outside of strings.

    *   Added $VERSION variable.

    *   Added support for different types of literal numbers: floating
        point, exponential notation (eg: 1.3e10), hexadecimal, and
        underscore-separated.

    *   Added the `CodeTerm' and `DATA' Formats.

  03-27-2001  Cory Johns

    *   Added was_pod() and updated the documentation for in_pod().

  03-20-2001  Cory Johns

    *   Added support for Perl formats (ie, ``format = ...'').