diff options
author | Sean Allred <code@seanallred.com> | 2014-12-26 17:35:51 -0500 |
---|---|---|
committer | Sean Allred <code@seanallred.com> | 2014-12-26 17:35:51 -0500 |
commit | a935ee7e5aa887f345b50aa4e922732e31157628 (patch) | |
tree | 2d17b28d4d456820d3078bb867dcb383c4e52e81 | |
parent | b87861b6187ef4395e77e34882401f7fb28dfa26 (diff) |
User IDs are very often more than one digit
-rw-r--r-- | sx.el | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -346,7 +346,7 @@ If ALIST doesn't have a `site' property, one is created using the (rx "/questions/" (1+ digit) "/" (1+ (not (any "/"))) "/" ;; User ID - (optional (group digit)) + (optional (group (+ digit))) (optional "/") (group (or (sequence "#" (0+ any)) "")) string-end) link)) |