Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Misc fix #3713

Merged
merged 7 commits into from
May 5, 2023
Merged

Misc fix #3713

merged 7 commits into from
May 5, 2023

Commits on Apr 30, 2023

  1. docs(man): fix a typo

    Signed-off-by: Masatake YAMATO <yamato@redhat.com>
    masatake committed Apr 30, 2023
    Configuration menu
    Copy the full SHA
    d34d8d8 View commit details
    Browse the repository at this point in the history
  2. gitignore: add files related to man pages in section 5

    Signed-off-by: Masatake YAMATO <yamato@redhat.com>
    masatake committed Apr 30, 2023
    Configuration menu
    Copy the full SHA
    c982b5e View commit details
    Browse the repository at this point in the history
  3. main,refactor: reduce the number of calling getNamedLanguage

    Signed-off-by: Masatake YAMATO <yamato@redhat.com>
    masatake committed Apr 30, 2023
    Configuration menu
    Copy the full SHA
    318d468 View commit details
    Browse the repository at this point in the history

Commits on May 4, 2023

  1. optlib2c: limit the chars acceptable as parts of a table name in --_m…

    …table-extend option
    
    Signed-off-by: Masatake YAMATO <yamato@redhat.com>
    masatake committed May 4, 2023
    Configuration menu
    Copy the full SHA
    1884361 View commit details
    Browse the repository at this point in the history
  2. prelude: add _chop and _chop_space procs

    Signed-off-by: Masatake YAMATO <yamato@redhat.com>
    masatake committed May 4, 2023
    Configuration menu
    Copy the full SHA
    3bb7b35 View commit details
    Browse the repository at this point in the history
  3. optscript: reject negative numbers for specifying rolling objects

    Signed-off-by: Masatake YAMATO <yamato@redhat.com>
    masatake committed May 4, 2023
    Configuration menu
    Copy the full SHA
    127a4f4 View commit details
    Browse the repository at this point in the history
  4. CPreProcessor: don't use isTagExtra() to pick up tags for adding them…

    … to a signature string
    
    The original code scanned corkQueue to pick up tags for making
    signature string. To avoid adding unwanted tags to the signature
    string, isTagExtra was used (522de3f).
    
    However, filtering with isTagExtra was too aggressive; tags extracted
    by the CPreProcessor parser running as a part of guest parser were
    rejected.
    
    This change uses an intArray. Instead of filtering candidate items in
    the corkQueue, the CPreProcessor collects tags for parameters to
    the intArray. The parameters are parts of a signature, not candidates.
    Therefore we don't need "filtering" anymore.
    
    Signed-off-by: Masatake YAMATO <yamato@redhat.com>
    masatake committed May 4, 2023
    Configuration menu
    Copy the full SHA
    9d034a4 View commit details
    Browse the repository at this point in the history