Skip to content

Commit f919f9d

Browse files
committed
Removed whitespace and added dtools/bin/remove-whitespace as a tool to do this in the future.
The sed script was provided by Moritz Fischer.
1 parent 6a1e978 commit f919f9d

File tree

2,188 files changed

+18137
-18138
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

2,188 files changed

+18137
-18138
lines changed

CMakeLists.txt

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
# Copyright 2010-2011 Free Software Foundation, Inc.
2-
#
2+
#
33
# This file is part of GNU Radio
4-
#
4+
#
55
# GNU Radio is free software; you can redistribute it and/or modify
66
# it under the terms of the GNU General Public License as published by
77
# the Free Software Foundation; either version 3, or (at your option)
88
# any later version.
9-
#
9+
#
1010
# GNU Radio is distributed in the hope that it will be useful,
1111
# but WITHOUT ANY WARRANTY; without even the implied warranty of
1212
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
1313
# GNU General Public License for more details.
14-
#
14+
#
1515
# You should have received a copy of the GNU General Public License
1616
# along with GNU Radio; see the file COPYING. If not, write to
1717
# the Free Software Foundation, Inc., 51 Franklin Street,

README

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,29 @@
11
#
22
# Copyright 2001-2007,2009,2012 Free Software Foundation, Inc.
3-
#
3+
#
44
# This file is part of GNU Radio
5-
#
5+
#
66
# GNU Radio is free software; you can redistribute it and/or modify
77
# it under the terms of the GNU General Public License as published by
88
# the Free Software Foundation; either version 3, or (at your option)
99
# any later version.
10-
#
10+
#
1111
# GNU Radio is distributed in the hope that it will be useful,
1212
# but WITHOUT ANY WARRANTY; without even the implied warranty of
1313
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
1414
# GNU General Public License for more details.
15-
#
15+
#
1616
# You should have received a copy of the GNU General Public License
1717
# along with GNU Radio; see the file COPYING. If not, write to
1818
# the Free Software Foundation, Inc., 51 Franklin Street,
1919
# Boston, MA 02110-1301, USA.
20-
#
20+
#
2121

2222
Welcome to GNU Radio!
2323

2424

2525
Please see http://gnuradio.org for the wiki, bug tracking,
26-
and source code viewer.
26+
and source code viewer.
2727

2828
If you've got questions about GNU Radio, please subscribe to the
2929
discuss-gnuradio mailing list and post your questions there.
@@ -230,7 +230,7 @@ run some of the example.
230230

231231
----------------------------------------------------------------
232232

233-
If you have doxygen installed, the build process creates
233+
If you have doxygen installed, the build process creates
234234
documentation for the class hierarchy etc. Point your browser at
235235
gnuradio/gnuradio-core/doc/html/index.html
236236

README-win32-mingw-short.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ Building and using gnuradio on windows (win32) using mingw
22

33
Required tools and libraries
44

5-
MingW and Msys
5+
MingW and Msys
66
Download the latest stable version from the mingw site oand follow their installation instructions)
77

88
Python for windows version 2.4 (or higher)

README.hacking

+11-11
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,24 @@
11
# -*- Outline -*-
22
#
33
# Copyright 2004,2007,2008,2009 Free Software Foundation, Inc.
4-
#
4+
#
55
# This file is part of GNU Radio
6-
#
6+
#
77
# GNU Radio is free software; you can redistribute it and/or modify
88
# it under the terms of the GNU General Public License as published by
99
# the Free Software Foundation; either version 3, or (at your option)
1010
# any later version.
11-
#
11+
#
1212
# GNU Radio is distributed in the hope that it will be useful,
1313
# but WITHOUT ANY WARRANTY; without even the implied warranty of
1414
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
1515
# GNU General Public License for more details.
16-
#
16+
#
1717
# You should have received a copy of the GNU General Public License
1818
# along with GNU Radio; see the file COPYING. If not, write to
1919
# the Free Software Foundation, Inc., 51 Franklin Street,
2020
# Boston, MA 02110-1301, USA.
21-
#
21+
#
2222

2323
Random notes on coding conventions, some explanations about why things
2424
aren't done differently, etc, etc,
@@ -103,7 +103,7 @@ The big win is when you're staring at a block of code it's obvious
103103
which of the things being assigned to persist outside of the block.
104104
This also keeps you from having to be creative with parameter names
105105
for methods and constructors. You just use the same name as the
106-
instance variable, without the d_.
106+
instance variable, without the d_.
107107

108108
class gr_wonderfulness {
109109
std::string d_name;
@@ -147,7 +147,7 @@ See http://www.boost.org/libs/smart_ptr/smart_ptr.htm
147147
* Unit tests
148148

149149
Build unit tests for everything non-trivial and run them after every
150-
change. Check out Extreme Programming:
150+
change. Check out Extreme Programming:
151151
http://c2.com/cgi/wiki?ExtremeProgrammingRoadmap
152152

153153
Unit tests should also be written for all examples. This should kill
@@ -177,7 +177,7 @@ We use the standard unittest package for unit testing of Python code.
177177

178178
* Subversion line ending styles
179179

180-
All text files in the tree should have the subversion property
180+
All text files in the tree should have the subversion property
181181
'svn:eol-style' set to 'native', with the following exceptions:
182182

183183
config/*.m4
@@ -192,7 +192,7 @@ enable-auto-props=yes
192192

193193
[auto-props]
194194
*.c = svn:eol-style=native
195-
*.cc = svn:eol-style=native
195+
*.cc = svn:eol-style=native
196196
*.i = svn:eol-style=native
197197
*.h = svn:eol-style=native
198198
*.am = svn:eol-style=native
@@ -303,15 +303,15 @@ To specify a rate use:
303303

304304
add_option("-r", "--sample-rate", type="eng_float", default=<your-default-here>,
305305
help="specify sample-rate [default=%default]")
306-
306+
307307

308308
If your application has a verbose option, use:
309309

310310
add_option('-v', '--verbose', action="store_true", default=False,
311311
help="verbose output")
312312

313313

314-
If your application allows the user to specify the "fast USB" options, use:
314+
If your application allows the user to specify the "fast USB" options, use:
315315

316316
add_option("", "--fusb-block-size", type="intx", default=0,
317317
help="specify fast usb block size [default=%default]")

cmake/Modules/FindJack.cmake

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ else (JACK_LIBRARIES AND JACK_INCLUDE_DIRS)
3939
/opt/local/include
4040
/sw/include
4141
)
42-
42+
4343
find_library(JACK_LIBRARY
4444
NAMES
4545
jack

cmake/Modules/FindOSS.cmake

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,4 +43,4 @@ MARK_AS_ADVANCED (
4343
LINUX_OSS_INCLUDE_DIR
4444
SYS_OSS_INCLUDE_DIR
4545
MACHINE_OSS_INCLUDE_DIR
46-
)
46+
)

cmake/Modules/FindPortaudio.cmake

+7-7
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ else (PORTAUDIO_LIBRARIES AND PORTAUDIO_INCLUDE_DIRS)
4848
/opt/local/include
4949
/sw/include
5050
)
51-
51+
5252
find_library(PORTAUDIO_LIBRARY
5353
NAMES
5454
portaudio
@@ -58,7 +58,7 @@ else (PORTAUDIO_LIBRARIES AND PORTAUDIO_INCLUDE_DIRS)
5858
/opt/local/lib
5959
/sw/lib
6060
)
61-
61+
6262
find_path(PORTAUDIO_LIBRARY_DIR
6363
NAMES
6464
portaudio
@@ -68,26 +68,26 @@ else (PORTAUDIO_LIBRARIES AND PORTAUDIO_INCLUDE_DIRS)
6868
/opt/local/lib
6969
/sw/lib
7070
)
71-
71+
7272
set(PORTAUDIO_INCLUDE_DIRS
7373
${PORTAUDIO_INCLUDE_DIR}
7474
)
7575
set(PORTAUDIO_LIBRARIES
7676
${PORTAUDIO_LIBRARY}
7777
)
78-
78+
7979
set(PORTAUDIO_LIBRARY_DIRS
8080
${PORTAUDIO_LIBRARY_DIR}
8181
)
82-
82+
8383
set(PORTAUDIO_VERSION
8484
18
8585
)
86-
86+
8787
if (PORTAUDIO_INCLUDE_DIRS AND PORTAUDIO_LIBRARIES)
8888
set(PORTAUDIO_FOUND TRUE)
8989
endif (PORTAUDIO_INCLUDE_DIRS AND PORTAUDIO_LIBRARIES)
90-
90+
9191
if (PORTAUDIO_FOUND)
9292
if (NOT Portaudio_FIND_QUIETLY)
9393
message(STATUS "Found Portaudio: ${PORTAUDIO_LIBRARIES}")

cmake/Modules/FindQwt.cmake

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ find_library (QWT_LIBRARIES
2323
/sw/lib
2424
)
2525

26-
# handle the QUIETLY and REQUIRED arguments and set QWT_FOUND to TRUE if
26+
# handle the QUIETLY and REQUIRED arguments and set QWT_FOUND to TRUE if
2727
# all listed variables are TRUE
2828
include ( FindPackageHandleStandardArgs )
2929
find_package_handle_standard_args( Qwt DEFAULT_MSG QWT_LIBRARIES QWT_INCLUDE_DIRS )

cmake/Modules/GrBoost.cmake

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
# Copyright 2010-2011 Free Software Foundation, Inc.
2-
#
2+
#
33
# This file is part of GNU Radio
4-
#
4+
#
55
# GNU Radio is free software; you can redistribute it and/or modify
66
# it under the terms of the GNU General Public License as published by
77
# the Free Software Foundation; either version 3, or (at your option)
88
# any later version.
9-
#
9+
#
1010
# GNU Radio is distributed in the hope that it will be useful,
1111
# but WITHOUT ANY WARRANTY; without even the implied warranty of
1212
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
1313
# GNU General Public License for more details.
14-
#
14+
#
1515
# You should have received a copy of the GNU General Public License
1616
# along with GNU Radio; see the file COPYING. If not, write to
1717
# the Free Software Foundation, Inc., 51 Franklin Street,

cmake/Modules/GrComponent.cmake

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
# Copyright 2010-2011 Free Software Foundation, Inc.
2-
#
2+
#
33
# This file is part of GNU Radio
4-
#
4+
#
55
# GNU Radio is free software; you can redistribute it and/or modify
66
# it under the terms of the GNU General Public License as published by
77
# the Free Software Foundation; either version 3, or (at your option)
88
# any later version.
9-
#
9+
#
1010
# GNU Radio is distributed in the hope that it will be useful,
1111
# but WITHOUT ANY WARRANTY; without even the implied warranty of
1212
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
1313
# GNU General Public License for more details.
14-
#
14+
#
1515
# You should have received a copy of the GNU General Public License
1616
# along with GNU Radio; see the file COPYING. If not, write to
1717
# the Free Software Foundation, Inc., 51 Franklin Street,

cmake/Modules/GrMiscUtils.cmake

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
# Copyright 2010-2011 Free Software Foundation, Inc.
2-
#
2+
#
33
# This file is part of GNU Radio
4-
#
4+
#
55
# GNU Radio is free software; you can redistribute it and/or modify
66
# it under the terms of the GNU General Public License as published by
77
# the Free Software Foundation; either version 3, or (at your option)
88
# any later version.
9-
#
9+
#
1010
# GNU Radio is distributed in the hope that it will be useful,
1111
# but WITHOUT ANY WARRANTY; without even the implied warranty of
1212
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
1313
# GNU General Public License for more details.
14-
#
14+
#
1515
# You should have received a copy of the GNU General Public License
1616
# along with GNU Radio; see the file COPYING. If not, write to
1717
# the Free Software Foundation, Inc., 51 Franklin Street,

cmake/Modules/GrPackage.cmake

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
# Copyright 2011 Free Software Foundation, Inc.
2-
#
2+
#
33
# This file is part of GNU Radio
4-
#
4+
#
55
# GNU Radio is free software; you can redistribute it and/or modify
66
# it under the terms of the GNU General Public License as published by
77
# the Free Software Foundation; either version 3, or (at your option)
88
# any later version.
9-
#
9+
#
1010
# GNU Radio is distributed in the hope that it will be useful,
1111
# but WITHOUT ANY WARRANTY; without even the implied warranty of
1212
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
1313
# GNU General Public License for more details.
14-
#
14+
#
1515
# You should have received a copy of the GNU General Public License
1616
# along with GNU Radio; see the file COPYING. If not, write to
1717
# the Free Software Foundation, Inc., 51 Franklin Street,

cmake/Modules/GrPlatform.cmake

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
# Copyright 2011 Free Software Foundation, Inc.
2-
#
2+
#
33
# This file is part of GNU Radio
4-
#
4+
#
55
# GNU Radio is free software; you can redistribute it and/or modify
66
# it under the terms of the GNU General Public License as published by
77
# the Free Software Foundation; either version 3, or (at your option)
88
# any later version.
9-
#
9+
#
1010
# GNU Radio is distributed in the hope that it will be useful,
1111
# but WITHOUT ANY WARRANTY; without even the implied warranty of
1212
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
1313
# GNU General Public License for more details.
14-
#
14+
#
1515
# You should have received a copy of the GNU General Public License
1616
# along with GNU Radio; see the file COPYING. If not, write to
1717
# the Free Software Foundation, Inc., 51 Franklin Street,

cmake/Modules/GrSwig.cmake

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
# Copyright 2010-2011 Free Software Foundation, Inc.
2-
#
2+
#
33
# This file is part of GNU Radio
4-
#
4+
#
55
# GNU Radio is free software; you can redistribute it and/or modify
66
# it under the terms of the GNU General Public License as published by
77
# the Free Software Foundation; either version 3, or (at your option)
88
# any later version.
9-
#
9+
#
1010
# GNU Radio is distributed in the hope that it will be useful,
1111
# but WITHOUT ANY WARRANTY; without even the implied warranty of
1212
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
1313
# GNU General Public License for more details.
14-
#
14+
#
1515
# You should have received a copy of the GNU General Public License
1616
# along with GNU Radio; see the file COPYING. If not, write to
1717
# the Free Software Foundation, Inc., 51 Franklin Street,
@@ -67,15 +67,15 @@ function(GR_SWIG_MAKE_DOCS output_file)
6767
#call doxygen on the Doxyfile + input headers
6868
add_custom_command(
6969
OUTPUT ${OUTPUT_DIRECTORY}/xml/index.xml
70-
${OUTPUT_DIRECTORY}/xml/combine.xslt
70+
${OUTPUT_DIRECTORY}/xml/combine.xslt
7171
DEPENDS ${input_files} ${GR_SWIG_DOCS_SOURCE_DEPS} ${tag_deps}
7272
COMMAND ${DOXYGEN_EXECUTABLE} ${OUTPUT_DIRECTORY}/Doxyfile
7373
COMMENT "Generating doxygen xml for ${name} docs"
7474
)
7575

7676
#call the swig_doc script on the xml files
7777
add_custom_command(
78-
OUTPUT ${output_file}
78+
OUTPUT ${output_file}
7979
DEPENDS ${input_files} ${stamp-file} ${OUTPUT_DIRECTORY}/xml/index.xml
8080
COMMAND ${PYTHON_EXECUTABLE} ${PYTHON_DASH_B}
8181
${CMAKE_SOURCE_DIR}/docs/doxygen/swig_doc.py

0 commit comments

Comments
 (0)