In April 2020 arc-mode.el changed from using vectors of strings to vectors of structs to represent files inside archives. That change breaks this code which generates strings.
Reproduction:
` load this code into recent emacs
load an rpm file.
Observe type error when archive-summarize-files tries to extract the archive--file-summary-name-start field from a string.
At the moment I am not sure what a good fix would be.
Clearly the code can be updated to generate the structs rather than the strings, but I don't currently know how to figure out how to choose the string or the struct.
In April 2020 arc-mode.el changed from using vectors of strings to vectors of structs to represent files inside archives. That change breaks this code which generates strings.
Reproduction: ` load this code into recent emacs load an rpm file. Observe type error when archive-summarize-files tries to extract the archive--file-summary-name-start field from a string.
At the moment I am not sure what a good fix would be. Clearly the code can be updated to generate the structs rather than the strings, but I don't currently know how to figure out how to choose the string or the struct.