File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -115,7 +115,7 @@ This returns a string like \"reloc+0x1a\". ADDEND can be nil."
115115 ?#
116116 (zero-or-more space)
117117 (group (one-or-more (not space)))
118- (group (zero-or-more any ) eol))
118+ (group (zero-or-more not-newline ) eol))
119119 nil t )
120120 (let ((rest (match-string 4 )))
121121 (replace-match " \\ 3(%rip)\\ 2" )
Original file line number Diff line number Diff line change @@ -228,7 +228,7 @@ The groups are:
228228 word-boundary
229229 (1+ hex-digit) space
230230 ?<
231- (group (1+ any ))
231+ (group (1+ not-newline ))
232232 ?>
233233 eol)
234234 " Regexp matching a symbolic reference, with hex address before.
@@ -323,7 +323,7 @@ This finds file format by searching for this line:
323323 (group (+ hex-digit)) (* space)
324324
325325 ; ; Function name
326- ?< (group (* any )) ?> ?:
326+ ?< (group (* not-newline )) ?> ?:
327327
328328 eol)
329329 " A regexp matching function beginning in objdump disassembly output.
You can’t perform that action at this time.
0 commit comments