This file is indexed.

/usr/share/gnudatalanguage/lib/escape_special_char.pro is in libgnudatalanguage0 0.9.7-2.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
;+
; NAME: ESCAPE_SPECIAL_CHAR
; 
; ESCAPE_SPECIAL_CHAR function escape special characteres present
; in input string argument and returns the result.
; Special characteres can be given by Keyword : list_of_special_char
; or default list is used.
;
; MODIFICATION HISTORY:
;   - June 2010: created by Lea Noreskal
;   - 28 June 2010: modified by Alain Coulais (N_PARAMS(), /help)
;-
; LICENCE:
; Copyright (C) 2010, Lea Noreskal and Alain Coulais
; This program is free software; you can redistribute it and/or modify  
; it under the terms of the GNU General Public License as published by  
; the Free Software Foundation; either version 2 of the License, or     
; (at your option) any later version.
;-
;
; ---------------------------------
;
function ESCAPE_SPECIAL_CHAR, str_in,  show_list=show_list, $
                              list_of_special_char=list_of_special_char, $
                              test=test, help=help, verbose=verbose
;
if N_PARAMS() NE 1 then begin
    MESSAGE, /continue, 'You must provide a input string !'
    help=1
endif
if KEYWORD_SET(help) then begin
    print, 'function ESCAPE_SPECIAL_CHAR, str_in, show_list=show_list, $'
    print, '           list_of_special_char=list_of_special_char, $'
    print, '           test=test, help=help, verbose=verbose'
    return, -1
endif
;
if KEYWORD_SET(verbose) then begin
    MESSAGE, /continue, '/verbose keyword not available, please contribute'
endif
;
; list of special characteres can be modified if it is not complete
;if( not KEYWORD_SET(list_of_special_char)) then list_of_special_char ='[*.^$,&\]'
;tab=STRSPLIT(str_in, list_of_special_char, /REGEX, /preserve)
;print, tab

if ~KEYWORD_SET(list_of_special_char) then list_of_special_char ='*.^$,&\'
;
if KEYWORD_SET(show_list) then begin
    print, 'List of Special Chars which will be escapaded :'
    print, list_of_special_char
endif
;
tab=STRSPLIT(str_in, list_of_special_char, /preserve_null)
;
str_out='';
;
for ii=0,N_ELEMENTS(tab)-1 do begin
    if (ii+1 LT N_ELEMENTS(tab)) then begin
        ;;print,ii,  ' : ', tab[ii] ,' > ', STRMID(str_in,tab[ii],tab[ii+1]-tab[ii]-1)
        if (tab[ii] GT 0) then begin
            ;;escape special char
            str_out=str_out+'\'+STRMID(str_in,tab[ii]-1,1)+STRMID(str_in,tab[ii],tab[ii+1]-tab[ii]-1)
        endif else begin
            ;;beginning of the world
            str_out=str_out+STRMID(str_in,tab[ii],tab[ii+1]-tab[ii]-1)
        endelse
    endif else begin
        ;;print, ii,  ' : ', tab[ii] ,' > ', STRMID(str_in,tab[ii])
        if(tab[ii] GT 0) then begin
            ;;escape special char
            str_out=str_out+'\'+STRMID(str_in,tab[ii]-1,1)+STRMID(str_in,tab[ii])
        endif else begin
            ;;end of  the word        
            str_out=str_out+STRMID(str_in,tab[ii])
        endelse
    endelse
endfor
;
;merger of each part and escape spaces
str_out=STRJOIN(STRSPLIT(str_out, /EXTRACT), '\ ') 
;
if KEYWORD_SET(test) then STOP
;
return, str_out
;
end