aboutsummaryrefslogtreecommitdiffstats
path: root/src/search.c
diff options
context:
space:
mode:
authorGlenn Morris2019-05-22 10:18:51 -0700
committerGlenn Morris2019-05-22 10:18:51 -0700
commit0d1ff4cbe232e9ee398dc30058495c29996c0b33 (patch)
treea8a76410648760c7316c20fcde1c2809fecfec16 /src/search.c
parent5a024b72c50129cc429bc4b8b18b8c08f3f6b430 (diff)
parent5d24af87c15d9baa9db96fe3c3200d5585d58c4e (diff)
downloademacs-0d1ff4cbe232e9ee398dc30058495c29996c0b33.tar.gz
emacs-0d1ff4cbe232e9ee398dc30058495c29996c0b33.zip
Merge from origin/emacs-26
5d24af8 Remove from docs references to obsolete MULE variables 2bdc419 Do potentially destructive operations in prepare-commit-msg # Conflicts: # src/search.c
Diffstat (limited to 'src/search.c')
-rw-r--r--src/search.c7
1 files changed, 1 insertions, 6 deletions
diff --git a/src/search.c b/src/search.c
index dfbae5c9628..8a0f707b723 100644
--- a/src/search.c
+++ b/src/search.c
@@ -1324,12 +1324,7 @@ search_buffer_non_re (Lisp_Object string, ptrdiff_t pos,
1324 } 1324 }
1325 else 1325 else
1326 { 1326 {
1327 /* Converting multibyte to single-byte. 1327 /* Converting multibyte to single-byte. */
1328
1329 ??? Perhaps this conversion should be done in a special way
1330 by subtracting nonascii-insert-offset from each non-ASCII char,
1331 so that only the multibyte chars which really correspond to
1332 the chosen single-byte character set can possibly match. */
1333 raw_pattern_size = SCHARS (string); 1328 raw_pattern_size = SCHARS (string);
1334 raw_pattern_size_byte = SCHARS (string); 1329 raw_pattern_size_byte = SCHARS (string);
1335 raw_pattern = SAFE_ALLOCA (raw_pattern_size + 1); 1330 raw_pattern = SAFE_ALLOCA (raw_pattern_size + 1);